diff options
author | Eric Fiselier <eric@efcs.ca> | 2017-02-10 09:25:15 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2017-02-10 09:25:15 +0000 |
commit | 2279ee31449da018a32830926261dce2383ea070 (patch) | |
tree | 4a35985c144d4ddb1c82ae9ec9185edbac46cf5a | |
parent | 637160c55aae9d1484c83b2225658170b1238714 (diff) | |
download | bcm5719-llvm-2279ee31449da018a32830926261dce2383ea070.tar.gz bcm5719-llvm-2279ee31449da018a32830926261dce2383ea070.zip |
Fix yet another Apple buildit bug
llvm-svn: 294732
-rw-r--r-- | libcxx/src/typeinfo.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/src/typeinfo.cpp b/libcxx/src/typeinfo.cpp index 05f57e0f996..02778f36870 100644 --- a/libcxx/src/typeinfo.cpp +++ b/libcxx/src/typeinfo.cpp @@ -9,8 +9,10 @@ #include "typeinfo" +// FIXME: Remove __APPLE__ default here once buildit is gone. #if (!defined(_LIBCPP_ABI_MICROSOFT) && !defined(LIBCXX_BUILDING_LIBCXXABI) && \ - !defined(LIBCXXRT) && !defined(__GLIBCXX__)) || \ + !defined(LIBCXXRT) && !defined(__GLIBCXX__) && \ + !defined(__APPLE__)) || \ defined(_LIBCPP_BUILDING_HAS_NO_ABI_LIBRARY) // FIXME: remove this configuration. std::type_info::~type_info() { |