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:
authorHoward Hinnant <hhinnant@apple.com>2011-07-15 18:25:40 +0400
committerHoward Hinnant <hhinnant@apple.com>2011-07-15 18:25:40 +0400
commit3b13c94a1482368a6fe10b2e7006d6cc2c21bc53 (patch)
treed2cc3ba171849e7f067c9863d41ae3491f6859ae /libcxx/include/locale
parentcb1a888fdec371dbd39c164d5db3f4441dd679d9 (diff)
_LIBCXX_STABLE_APPLE_ABI -> _LIBCPP_STABLE_APPLE_ABI
llvm-svn: 135271
Diffstat (limited to 'libcxx/include/locale')
-rw-r--r--libcxx/include/locale6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/include/locale b/libcxx/include/locale
index 549ae60d2c62..ebdba766e78a 100644
--- a/libcxx/include/locale
+++ b/libcxx/include/locale
@@ -874,7 +874,7 @@ __num_get_signed_integral(const char* __a, const char* __a_end,
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 @@ __num_get_unsigned_integral(const char* __a, const char* __a_end,
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 @@ __num_get_float(const char* __a, const char* __a_end, ios_base::iostate& __err)
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());