From 44c169c9be3cec6957d5b04272a3564cf9137109 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Sat, 22 Feb 2020 23:30:31 -0500 Subject: Issue #1053 - Remove android support from mfbt --- mfbt/tests/TestTypeTraits.cpp | 14 -------------- mfbt/tests/TestTypedEnum.cpp | 3 +-- 2 files changed, 1 insertion(+), 16 deletions(-) (limited to 'mfbt/tests') diff --git a/mfbt/tests/TestTypeTraits.cpp b/mfbt/tests/TestTypeTraits.cpp index eb412bc54..cd42f1e44 100644 --- a/mfbt/tests/TestTypeTraits.cpp +++ b/mfbt/tests/TestTypeTraits.cpp @@ -636,20 +636,6 @@ static_assert(IsSame::Type, int*>::value, static_assert(IsSame::Type, void(*)(int)>::value, "decaying void(int) must return void(*)(int)"); -/* - * Android's broken [u]intptr_t inttype macros are broken because its PRI*PTR - * macros are defined as "ld", but sizeof(long) is 8 and sizeof(intptr_t) - * is 4 on 32-bit Android. We redefine Android's PRI*PTR macros in - * IntegerPrintfMacros.h and assert here that our new definitions match the - * actual type sizes seen at compile time. - */ -#if defined(ANDROID) && !defined(__LP64__) -static_assert(mozilla::IsSame::value, - "emulated PRI[di]PTR definitions will be wrong"); -static_assert(mozilla::IsSame::value, - "emulated PRI[ouxX]PTR definitions will be wrong"); -#endif - int main() { diff --git a/mfbt/tests/TestTypedEnum.cpp b/mfbt/tests/TestTypedEnum.cpp index 43c36f2b8..1c8db754b 100644 --- a/mfbt/tests/TestTypedEnum.cpp +++ b/mfbt/tests/TestTypedEnum.cpp @@ -12,8 +12,7 @@ // A rough feature check for is_literal_type. Not very carefully checked. // Feel free to amend as needed. -// We leave ANDROID out because it's using stlport which doesn't have std::is_literal_type. -#if __cplusplus >= 201103L && !defined(ANDROID) +#if __cplusplus >= 201103L # if defined(__clang__) /* * Per Clang documentation, "Note that marketing version numbers should not -- cgit v1.2.3