[libcxx] r321666 - One more (should be) inline variable that is defined in the dylib
Marshall Clow via cfe-commits
cfe-commits at lists.llvm.org
Tue Jan 2 11:23:30 PST 2018
Author: marshall
Date: Tue Jan 2 11:23:30 2018
New Revision: 321666
URL: http://llvm.org/viewvc/llvm-project?rev=321666&view=rev
Log:
One more (should be) inline variable that is defined in the dylib
Modified:
libcxx/trunk/include/__mutex_base
Modified: libcxx/trunk/include/__mutex_base
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/__mutex_base?rev=321666&r1=321665&r2=321666&view=diff
==============================================================================
--- libcxx/trunk/include/__mutex_base (original)
+++ libcxx/trunk/include/__mutex_base Tue Jan 2 11:23:30 2018
@@ -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
More information about the cfe-commits
mailing list