[cfe-commits] [libcxx] r135271 - /libcxx/trunk/include/locale

Howard Hinnant hhinnant at apple.com
Fri Jul 15 07:25:40 PDT 2011


Author: hhinnant
Date: Fri Jul 15 09:25:40 2011
New Revision: 135271

URL: http://llvm.org/viewvc/llvm-project?rev=135271&view=rev
Log:
_LIBCXX_STABLE_APPLE_ABI -> _LIBCPP_STABLE_APPLE_ABI

Modified:
    libcxx/trunk/include/locale

Modified: libcxx/trunk/include/locale
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/locale?rev=135271&r1=135270&r2=135271&view=diff
==============================================================================
--- libcxx/trunk/include/locale (original)
+++ libcxx/trunk/include/locale Fri Jul 15 09:25:40 2011
@@ -874,7 +874,7 @@
         int __save_errno = errno;
         errno = 0;
         char *__p2;
-#ifdef _LIBCXX_STABLE_APPLE_ABI
+#ifdef _LIBCPP_STABLE_APPLE_ABI
         long long __ll = strtoll_l(__a, &__p2, __base, 0);
 #else
         long long __ll = strtoll_l(__a, &__p2, __base, __cloc());
@@ -918,7 +918,7 @@
         int __save_errno = errno;
         errno = 0;
         char *__p2;
-#ifdef _LIBCXX_STABLE_APPLE_ABI
+#ifdef _LIBCPP_STABLE_APPLE_ABI
         unsigned long long __ll = strtoull_l(__a, &__p2, __base, 0);
 #else
         unsigned long long __ll = strtoull_l(__a, &__p2, __base, __cloc());
@@ -950,7 +950,7 @@
     if (__a != __a_end)
     {
         char *__p2;
-#ifdef _LIBCXX_STABLE_APPLE_ABI
+#ifdef _LIBCPP_STABLE_APPLE_ABI
         long double __ld = strtold_l(__a, &__p2, 0);
 #else
         long double __ld = strtold_l(__a, &__p2, __cloc());





More information about the cfe-commits mailing list