summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarshall Clow <mclow.lists@gmail.com>2018-01-02 18:57:47 +0000
committerMarshall Clow <mclow.lists@gmail.com>2018-01-02 18:57:47 +0000
commit136dc563ad98589beeb18e23963e93091e2babf1 (patch)
treeb21de9db96d9347875ce1b600c27663895961d9d
parentc1ab13d9df5ff66103b00ae13d8003e67ce74786 (diff)
Temporarily revert the inlining of 'piecewise_construct' because it is exported from the dylib.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@321663 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/utility2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/utility b/include/utility
index 11d128cf4..6fa2e15d1 100644
--- a/include/utility
+++ b/include/utility
@@ -296,7 +296,7 @@ struct _LIBCPP_TEMPLATE_VIS piecewise_construct_t { };
#if defined(_LIBCPP_CXX03_LANG) || defined(_LIBCPP_BUILDING_UTILITY)
extern const piecewise_construct_t piecewise_construct;// = piecewise_construct_t();
#else
-_LIBCPP_INLINE_VAR constexpr piecewise_construct_t piecewise_construct = piecewise_construct_t();
+/* _LIBCPP_INLINE_VAR */ constexpr piecewise_construct_t piecewise_construct = piecewise_construct_t();
#endif
#if defined(_LIBCPP_DEPRECATED_ABI_DISABLE_PAIR_TRIVIAL_COPY_CTOR)