summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarshall Clow <mclow.lists@gmail.com>2018-01-02 19:23:30 +0000
committerMarshall Clow <mclow.lists@gmail.com>2018-01-02 19:23:30 +0000
commit97adf8a38ed1ddbd3e467ea472daed9cc611f4f3 (patch)
treea3579bf7d7bb23effa013ef0b8eb1411e79ebccf
parent4e498577b5d83c8d16da14d00f2ee54bd88d422f (diff)
One more (should be) inline variable that is defined in the dylib
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@321666 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/__mutex_base6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/__mutex_base b/include/__mutex_base
index 6a2b53b06..402a52d94 100644
--- a/include/__mutex_base
+++ b/include/__mutex_base
@@ -82,9 +82,9 @@ extern const adopt_lock_t adopt_lock;
#else
-_LIBCPP_INLINE_VAR constexpr defer_lock_t defer_lock = defer_lock_t();
-_LIBCPP_INLINE_VAR constexpr try_to_lock_t try_to_lock = try_to_lock_t();
-_LIBCPP_INLINE_VAR constexpr adopt_lock_t adopt_lock = adopt_lock_t();
+/* _LIBCPP_INLINE_VAR */ constexpr defer_lock_t defer_lock = defer_lock_t();
+/* _LIBCPP_INLINE_VAR */ constexpr try_to_lock_t try_to_lock = try_to_lock_t();
+/* _LIBCPP_INLINE_VAR */ constexpr adopt_lock_t adopt_lock = adopt_lock_t();
#endif