Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarshall Clow <mclow@qualcomm.com>2013-03-18 23:34:07 +0400
committerMarshall Clow <mclow@qualcomm.com>2013-03-18 23:34:07 +0400
commit69e76f80e28fc969631a6b191f394c8ffc1618b1 (patch)
tree8779c27b0d941a47502b373842f5eeafe3fda0a0 /libcxx/include/locale
parent0db0878ead6ea8ad5616fbd53b4964f71ba87bb1 (diff)
Removed raw references to __sun__, __FreeBSD__, __GLIBC__ and __linux__; now just check to see if they are defined.
llvm-svn: 177310
Diffstat (limited to 'libcxx/include/locale')
-rw-r--r--libcxx/include/locale2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/locale b/libcxx/include/locale
index 0d8fba0b2bf0..662b980cb295 100644
--- a/libcxx/include/locale
+++ b/libcxx/include/locale
@@ -204,7 +204,7 @@ template <class charT> class messages_byname;
_LIBCPP_BEGIN_NAMESPACE_STD
-#if defined(__APPLE__) || __FreeBSD__
+#if defined(__APPLE__) || defined(__FreeBSD__)
# define _LIBCPP_GET_C_LOCALE 0
#else
# define _LIBCPP_GET_C_LOCALE __cloc()