diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-07-31 17:16:32 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-07-31 17:16:32 +0000 |
commit | eaaf7f26dfc8bb0069a8b201092781e03fc50c9a (patch) | |
tree | 113e294330150fb4f712dc25ba37c10c875640c2 /libcxx/src | |
parent | 2425d53cd88c3372497f188970c3a65d231febd9 (diff) | |
download | bcm5719-llvm-eaaf7f26dfc8bb0069a8b201092781e03fc50c9a.tar.gz bcm5719-llvm-eaaf7f26dfc8bb0069a8b201092781e03fc50c9a.zip |
Correct misspelling:_LIBCPP_APPLE_STABLE_ABI -> _LIBCPP_STABLE_APPLE_ABI
llvm-svn: 136597
Diffstat (limited to 'libcxx/src')
-rw-r--r-- | libcxx/src/locale.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/src/locale.cpp b/libcxx/src/locale.cpp index 2636e1774a4..a9fccec84c0 100644 --- a/libcxx/src/locale.cpp +++ b/libcxx/src/locale.cpp @@ -35,7 +35,7 @@ namespace { _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 @@ locale_t __cloc() { return result; #endif } -#endif // _LIBCPP_APPLE_STABLE_ABI +#endif // _LIBCPP_STABLE_APPLE_ABI namespace { @@ -942,7 +942,7 @@ ctype<char>::__classic_upper_table() _NOEXCEPT return NULL; #endif } -#endif // _LIBCPP_APPLE_STABLE_ABI +#endif // _LIBCPP_STABLE_APPLE_ABI // template <> class ctype_byname<char> |