diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2014-07-29 21:05:31 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2014-07-29 21:05:31 +0000 |
commit | 81f051cd10229373cf07a5ea49713b3c6dc0f49d (patch) | |
tree | a226cf0afced51aa64c5084faabbf6f065468799 /libcxx/include/mutex | |
parent | 27435250328b4c4eb0dfb80b088be76a0f98b2ea (diff) | |
download | bcm5719-llvm-81f051cd10229373cf07a5ea49713b3c6dc0f49d.tar.gz bcm5719-llvm-81f051cd10229373cf07a5ea49713b3c6dc0f49d.zip |
std::once_flag was forward declared with _LIBCPP_TYPE_VIS decoration, and the defined with _LIBCPP_TYPE_VIS_ONLY decoration. Make them match
llvm-svn: 214219
Diffstat (limited to 'libcxx/include/mutex')
-rw-r--r-- | libcxx/include/mutex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/mutex b/libcxx/include/mutex index e0c02adb59e..5dfba6325b3 100644 --- a/libcxx/include/mutex +++ b/libcxx/include/mutex @@ -425,7 +425,7 @@ lock(_L0& __l0, _L1& __l1, _L2& __l2, _L3& ...__l3) #endif // _LIBCPP_HAS_NO_VARIADICS -struct _LIBCPP_TYPE_VIS once_flag; +struct _LIBCPP_TYPE_VIS_ONLY once_flag; #ifndef _LIBCPP_HAS_NO_VARIADICS |