[cfe-commits] [libcxx] r136570 - /libcxx/branches/apple/src/locale.cpp
Howard Hinnant
hhinnant at apple.com
Sat Jul 30 09:37:03 PDT 2011
Author: hhinnant
Date: Sat Jul 30 11:37:03 2011
New Revision: 136570
URL: http://llvm.org/viewvc/llvm-project?rev=136570&view=rev
Log:
Correct misspelling: _LIBCPP_APPLE_STABLE_ABI -> _LIBCPP_STABLE_APPLE_ABI
Modified:
libcxx/branches/apple/src/locale.cpp
Modified: libcxx/branches/apple/src/locale.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/branches/apple/src/locale.cpp?rev=136570&r1=136569&r2=136570&view=diff
==============================================================================
--- libcxx/branches/apple/src/locale.cpp (original)
+++ libcxx/branches/apple/src/locale.cpp Sat Jul 30 11:37:03 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