diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-09-29 20:33:10 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-09-29 20:33:10 +0000 |
commit | 8909cdfff9ce35df42c94fc64602747e782db0ab (patch) | |
tree | e799bfaac52b9726ab0ea4579cee6dba649247c9 /libcxx/include/support/win32 | |
parent | 6626447929ee90a7fcf17555d6068a64bc9979d7 (diff) | |
download | bcm5719-llvm-8909cdfff9ce35df42c94fc64602747e782db0ab.tar.gz bcm5719-llvm-8909cdfff9ce35df42c94fc64602747e782db0ab.zip |
Windows port work by Ruben Van Boxem
llvm-svn: 140805
Diffstat (limited to 'libcxx/include/support/win32')
-rw-r--r-- | libcxx/include/support/win32/locale_win32.h (renamed from libcxx/include/support/win32/locale.h) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/include/support/win32/locale.h b/libcxx/include/support/win32/locale_win32.h index d640be137b5..8b7267c1d33 100644 --- a/libcxx/include/support/win32/locale.h +++ b/libcxx/include/support/win32/locale_win32.h @@ -1,5 +1,5 @@ // -*- C++ -*- -//===------------------------ support/win32/locale.h ----------------------===// +//===--------------------- support/win32/locale_win32.h -------------------===// // // The LLVM Compiler Infrastructure // @@ -8,8 +8,8 @@ // //===----------------------------------------------------------------------===// -#ifndef _LIBCPP_SUPPORT_WIN32_LOCALE_H -#define _LIBCPP_SUPPORT_WIN32_LOCALE_H +#ifndef _LIBCPP_SUPPORT_WIN32_LOCALE_WIN32_H +#define _LIBCPP_SUPPORT_WIN32_LOCALE_WIN32_H // ctype mask table defined in msvcrt.dll extern "C" unsigned short __declspec(dllimport) _ctype[]; @@ -107,4 +107,4 @@ inline int iswblank_l( wint_t c, locale_t /*loc*/ ) return ( c == L' ' || c == L'\t' ); } -#endif // _LIBCPP_SUPPORT_WIN32_LOCALE_H
\ No newline at end of file +#endif // _LIBCPP_SUPPORT_WIN32_LOCALE_WIN32_H |