Skip to content

Commit

Permalink
Merge pull request #872 from leapmotion/fix-android32-gcc4.9
Browse files Browse the repository at this point in the history
future is only supported by android64 gcc 4.9
  • Loading branch information
codemercenary committed Apr 2, 2016
2 parents 47ca9e7 + 203af67 commit 0da1f0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/autowiring/C++11/cpp11.h
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
/*********************
* future availability
*********************/
#if (_MSC_VER >= 1700 || (STL11_ALLOWED)) && (!__ANDROID__ || GCC_CHECK(4, 9))
#if (_MSC_VER >= 1700 || (STL11_ALLOWED)) && (!__ANDROID__ || (GCC_CHECK(4, 9) && __aarch64__))
#define FUTURE_HEADER <future>
#else
// As of NDK r10, we still don't have an implementation of "future" for Android
Expand Down

0 comments on commit 0da1f0b

Please sign in to comment.