[cfe-commits] [libcxx] r136597 - /libcxx/trunk/src/locale.cpp

Howard Hinnant hhinnant at apple.com
Sun Jul 31 10:16:32 PDT 2011


Author: hhinnant
Date: Sun Jul 31 12:16:32 2011
New Revision: 136597

URL: http://llvm.org/viewvc/llvm-project?rev=136597&view=rev
Log:
Correct misspelling:_LIBCPP_APPLE_STABLE_ABI -> _LIBCPP_STABLE_APPLE_ABI

Modified:
    libcxx/trunk/src/locale.cpp

Modified: libcxx/trunk/src/locale.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/src/locale.cpp?rev=136597&r1=136596&r2=136597&view=diff
==============================================================================
--- libcxx/trunk/src/locale.cpp (original)
+++ libcxx/trunk/src/locale.cpp Sun Jul 31 12:16:32 2011
@@ -35,7 +35,7 @@
 
 _LIBCPP_BEGIN_NAMESPACE_STD
 
-#ifndef _LIBCPP_APPLE_STABLE_ABI
+#ifndef _LIBCPP_STABLE_APPLE_ABI
 locale_t __cloc() {
   // In theory this could create a race condition. In practice
   // the race condition is non-fatal since it will just create
@@ -47,7 +47,7 @@
   return result;
 #endif
 }
-#endif // _LIBCPP_APPLE_STABLE_ABI
+#endif // _LIBCPP_STABLE_APPLE_ABI
 
 namespace {
 
@@ -942,7 +942,7 @@
     return NULL;
 #endif
 }
-#endif // _LIBCPP_APPLE_STABLE_ABI
+#endif // _LIBCPP_STABLE_APPLE_ABI
 
 // template <> class ctype_byname<char>
 





More information about the cfe-commits mailing list