Fix clang building the std headers.

This commit is contained in:
Ryan Houdek
2013-04-18 22:52:05 -05:00
parent d68955c539
commit f811d11863
3 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@
// GCC 4.4 provides <condition_variable>
#include <condition_variable>
#elif __has_include(<condition_variable>)
#elif __has_include(<condition_variable>) && !ANDROID
// clang and libc++ provide <condition_variable> on OSX. However, the version
// of libc++ bundled with OSX 10.7 and 10.8 is buggy: it uses _ as a variable.