diff options
| author | Marshall Clow <mclow.lists@gmail.com> | 2018-01-02 19:23:30 +0000 |
|---|---|---|
| committer | Marshall Clow <mclow.lists@gmail.com> | 2018-01-02 19:23:30 +0000 |
| commit | 2b377c99f715f0efab7173905054eab0c9fb02c0 (patch) | |
| tree | dc36e44ccfd4a9cd3edae0cf3d627f7aa7588074 /libcxx/include/__mutex_base | |
| parent | 2adab1bc5685634ff8cf96c173831bb9fc1432cc (diff) | |
| download | bcm5719-llvm-2b377c99f715f0efab7173905054eab0c9fb02c0.tar.gz bcm5719-llvm-2b377c99f715f0efab7173905054eab0c9fb02c0.zip | |
One more (should be) inline variable that is defined in the dylib
llvm-svn: 321666
Diffstat (limited to 'libcxx/include/__mutex_base')
| -rw-r--r-- | libcxx/include/__mutex_base | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/include/__mutex_base b/libcxx/include/__mutex_base index 6a2b53b0632..402a52d945e 100644 --- a/libcxx/include/__mutex_base +++ b/libcxx/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 |

