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/include/cwchar | |
| parent | 7504cefa1431705e1db5d89d448359fe167d8fad (diff) | |
| download | bcm5719-llvm-91907cbe82b2d4e29d4bb83b7a7e75ff875d253e.tar.gz bcm5719-llvm-91907cbe82b2d4e29d4bb83b7a7e75ff875d253e.zip | |
Removed raw references to _WIN32; now just check to see if it is defined.
llvm-svn: 177291
Diffstat (limited to 'libcxx/include/cwchar')
| -rw-r--r-- | libcxx/include/cwchar | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/cwchar b/libcxx/include/cwchar index eed6de18f1a..caed08de3fa 100644 --- a/libcxx/include/cwchar +++ b/libcxx/include/cwchar @@ -106,7 +106,7 @@ size_t wcsrtombs(char* restrict dst, const wchar_t** restrict src, size_t len, #include <__config> #include <cwctype> #include <wchar.h> -#if _WIN32 +#ifdef _WIN32 #include <support/win32/support.h> // pull in *swprintf defines #endif // _WIN32 |

