diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2015-10-16 11:26:26 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2015-10-16 11:26:26 +0000 |
commit | 02adf40a72faf9f25433e59b4684f0b6201dca95 (patch) | |
tree | 0ef4e5fe83d3a6aac881b26345c65e0bad42fc5f /libcxx/src | |
parent | 929df471a94c92ab744c5af7a33de5a0ad6699d2 (diff) | |
download | bcm5719-llvm-02adf40a72faf9f25433e59b4684f0b6201dca95.tar.gz bcm5719-llvm-02adf40a72faf9f25433e59b4684f0b6201dca95.zip |
Fix an unfortunate yet old typo that never got attention before r250507.
Should fix the xcode libc++ build.
llvm-svn: 250508
Diffstat (limited to 'libcxx/src')
-rw-r--r-- | libcxx/src/stdexcept.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/src/stdexcept.cpp b/libcxx/src/stdexcept.cpp index 577376e7066..0a08bfec27e 100644 --- a/libcxx/src/stdexcept.cpp +++ b/libcxx/src/stdexcept.cpp @@ -14,7 +14,7 @@ #include "system_error" /* For _LIBCPPABI_VERSION */ -#if defined(LIBCXX_BUILDING_LIBCXXABI) || defined(__APPLE_) || defined(LIBCXXRT) +#if defined(LIBCXX_BUILDING_LIBCXXABI) || defined(__APPLE__) || defined(LIBCXXRT) #include <cxxabi.h> #endif |