diff options
author | Marshall Clow <mclow@qualcomm.com> | 2013-03-18 17:45:34 +0000 |
---|---|---|
committer | Marshall Clow <mclow@qualcomm.com> | 2013-03-18 17:45:34 +0000 |
commit | b56e8587aff9d8766a673f51b2d9c525e1535d84 (patch) | |
tree | c4c634ec98a9e66df29d6d01254590677ba20b85 /libcxx/include/iterator | |
parent | e8f1cf478bc7bd8d6e7088a6e4c97d32ae6002c6 (diff) | |
download | bcm5719-llvm-b56e8587aff9d8766a673f51b2d9c525e1535d84.tar.gz bcm5719-llvm-b56e8587aff9d8766a673f51b2d9c525e1535d84.zip |
Removed raw references to __APPLE__; now just check to see if it is defined.
llvm-svn: 177297
Diffstat (limited to 'libcxx/include/iterator')
-rw-r--r-- | libcxx/include/iterator | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/iterator b/libcxx/include/iterator index 59e33900de9..3b078a2a214 100644 --- a/libcxx/include/iterator +++ b/libcxx/include/iterator @@ -317,7 +317,7 @@ template <class T, size_t N> T* end(T (&array)[N]); #include <type_traits> #include <cstddef> #include <iosfwd> -#if __APPLE__ +#ifdef __APPLE__ #include <Availability.h> #endif |