mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 820435 - Fix the B2G builds on gcc-4.6 (NDK r8) due to missing std::nullptr_t in STLPort; r=ehsan
--HG-- extra : rebase_source : e5fd2c6d1f3c0c817374b0fbf6471e14171f04b4
This commit is contained in:
parent
53c9d7b883
commit
22cd8de7ad
@ -101,8 +101,8 @@ class autoJArray {
|
||||
length = other.length;
|
||||
}
|
||||
#if defined(MOZ_HAVE_CXX11_NULLPTR)
|
||||
# if defined(__clang__) || defined(__ANDROID__)
|
||||
// clang on OS X 10.7 and gcc-4.6 on android does not have std::nullptr_t
|
||||
# if defined(__clang__) || defined(_STLPORT_VERSION)
|
||||
// clang on OS X 10.7 and Android's STLPort do not have std::nullptr_t
|
||||
typedef decltype(nullptr) jArray_nullptr_t;
|
||||
# else
|
||||
// decltype(nullptr) does not evaluate to std::nullptr_t on GCC 4.6.3
|
||||
|
Loading…
Reference in New Issue
Block a user