diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-01-06 20:13:54 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-01-06 20:13:54 +0000 |
commit | 4a2db4d30e1653093d4d8b06e8221e2f8b723507 (patch) | |
tree | 941a9d805eb2afbba58f445381819ba0e1dc355f /include/any | |
parent | cb08bb04c85c6dcd3d951725505317c31eeff323 (diff) | |
download | src-test2-4a2db4d30e1653093d4d8b06e8221e2f8b723507.tar.gz src-test2-4a2db4d30e1653093d4d8b06e8221e2f8b723507.zip |
Notes
Diffstat (limited to 'include/any')
-rw-r--r-- | include/any | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/any b/include/any index 1f70c4ff9b8d..823e1304b5cc 100644 --- a/include/any +++ b/include/any @@ -113,7 +113,7 @@ void __throw_bad_any_cast() } // Forward declarations -class _LIBCPP_TYPE_VIS_ONLY any; +class _LIBCPP_TEMPLATE_VIS any; template <class _ValueType> _LIBCPP_INLINE_VISIBILITY @@ -148,7 +148,7 @@ namespace __any_imp template <class _Tp> struct _LargeHandler; template <class _Tp> - struct _LIBCPP_TYPE_VIS_ONLY __unique_typeinfo { static constexpr int __id = 0; }; + struct _LIBCPP_TEMPLATE_VIS __unique_typeinfo { static constexpr int __id = 0; }; template <class _Tp> constexpr int __unique_typeinfo<_Tp>::__id; template <class _Tp> @@ -176,7 +176,7 @@ namespace __any_imp } // namespace __any_imp -class _LIBCPP_TYPE_VIS_ONLY any +class _LIBCPP_TEMPLATE_VIS any { public: // construct/destruct @@ -338,7 +338,7 @@ private: namespace __any_imp { template <class _Tp> - struct _LIBCPP_TYPE_VIS_ONLY _SmallHandler + struct _LIBCPP_TEMPLATE_VIS _SmallHandler { _LIBCPP_INLINE_VISIBILITY static void* __handle(_Action __act, any const * __this, any * __other, @@ -412,7 +412,7 @@ namespace __any_imp }; template <class _Tp> - struct _LIBCPP_TYPE_VIS_ONLY _LargeHandler + struct _LIBCPP_TEMPLATE_VIS _LargeHandler { _LIBCPP_INLINE_VISIBILITY static void* __handle(_Action __act, any const * __this, |