summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Hunt <scshunt@csclub.uwaterloo.ca>2011-07-12 00:55:04 +0000
committerSean Hunt <scshunt@csclub.uwaterloo.ca>2011-07-12 00:55:04 +0000
commit0389c53f4415eedf5da1f3b3ee35494fae4d7963 (patch)
tree0874996af5d6bbda2e3b2acfbfdc719672fc9734
parent66f2641ac9a743bebad4997066200a8ed9f69511 (diff)
Make sure that __time_put constructors properly on non-Apple platforms.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@134947 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/locale4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/locale b/include/locale
index 778d6c6f9..f1ef8c3fe 100644
--- a/include/locale
+++ b/include/locale
@@ -2516,7 +2516,11 @@ class __time_put
{
locale_t __loc_;
protected:
+#ifdef _LIBCPP_STABLE_APPLE_ABI
_LIBCPP_ALWAYS_INLINE __time_put() : __loc_(0) {}
+#else // _LIBCPP_STABLE_APPLE_ABI
+ _LIBCPP_ALWAYS_INLINE __time_put() : __loc_(__cloc()) {}
+#endif // _LIBCPP_STABLE_APPLE_ABI
__time_put(const char* __nm);
__time_put(const string& __nm);
~__time_put();