diff options
| author | Marshall Clow <mclow@qualcomm.com> | 2013-03-18 17:04:29 +0000 |
|---|---|---|
| committer | Marshall Clow <mclow@qualcomm.com> | 2013-03-18 17:04:29 +0000 |
| commit | 91907cbe82b2d4e29d4bb83b7a7e75ff875d253e (patch) | |
| tree | 52700f1f3518c6a6d6cf86395cef9d02bb44a516 /libcxx/src/string.cpp | |
| parent | 7504cefa1431705e1db5d89d448359fe167d8fad (diff) | |
Removed raw references to _WIN32; now just check to see if it is defined.
llvm-svn: 177291
Diffstat (limited to 'libcxx/src/string.cpp')
| -rw-r--r-- | libcxx/src/string.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/src/string.cpp b/libcxx/src/string.cpp index 40723e74a156..c71af4feb944 100644 --- a/libcxx/src/string.cpp +++ b/libcxx/src/string.cpp @@ -11,7 +11,7 @@ #include "cstdlib" #include "cwchar" #include "cerrno" -#if _WIN32 +#ifdef _WIN32 #include "support/win32/support.h" #endif // _WIN32 |
