Removed raw references to __APPLE__; now just check to see if it is defined.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@177297 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow
2013-03-18 17:45:34 +00:00
parent a22d2addb1
commit dece7fe670
10 changed files with 16 additions and 16 deletions

View File

@@ -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