One more (should be) inline variable that is defined in the dylib

llvm-svn: 321666
This commit is contained in:
Marshall Clow 2018-01-02 19:23:30 +00:00
parent 2adab1bc56
commit 2b377c99f7
1 changed files with 3 additions and 3 deletions
libcxx/include

View File

@ -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