[libcxx] r214219 - std::once_flag was forward declared with _LIBCPP_TYPE_VIS decoration, and the defined with _LIBCPP_TYPE_VIS_ONLY decoration. Make them match
Marshall Clow
mclow.lists at gmail.com
Tue Jul 29 14:05:31 PDT 2014
Author: marshall
Date: Tue Jul 29 16:05:31 2014
New Revision: 214219
URL: http://llvm.org/viewvc/llvm-project?rev=214219&view=rev
Log:
std::once_flag was forward declared with _LIBCPP_TYPE_VIS decoration, and the defined with _LIBCPP_TYPE_VIS_ONLY decoration. Make them match
Modified:
libcxx/trunk/include/mutex
Modified: libcxx/trunk/include/mutex
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/mutex?rev=214219&r1=214218&r2=214219&view=diff
==============================================================================
--- libcxx/trunk/include/mutex (original)
+++ libcxx/trunk/include/mutex Tue Jul 29 16:05:31 2014
@@ -425,7 +425,7 @@ lock(_L0& __l0, _L1& __l1, _L2& __l2, _L
#endif // _LIBCPP_HAS_NO_VARIADICS
-struct _LIBCPP_TYPE_VIS once_flag;
+struct _LIBCPP_TYPE_VIS_ONLY once_flag;
#ifndef _LIBCPP_HAS_NO_VARIADICS
More information about the cfe-commits
mailing list