diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-03-29 16:19:55 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-03-29 16:19:55 +0700 |
commit | aa0108c75e4177b6db0705ce42998e92c6ac734f (patch) | |
tree | c0ec6d57dcb70dfaba808a8c74b8e892d712051b /system/include/libcxx/limits | |
parent | e3d12277cdbb3c47ddeacf1fa005f2964debefbb (diff) |
Update to r178253 from March 29, 2013.
Diffstat (limited to 'system/include/libcxx/limits')
-rw-r--r-- | system/include/libcxx/limits | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/system/include/libcxx/limits b/system/include/libcxx/limits index f089a794..9b9d7a6f 100644 --- a/system/include/libcxx/limits +++ b/system/include/libcxx/limits @@ -433,7 +433,7 @@ protected: }; template <class _Tp> -class _LIBCPP_VISIBLE numeric_limits +class _LIBCPP_TYPE_VIS numeric_limits : private __libcpp_numeric_limits<typename remove_cv<_Tp>::type> { typedef __libcpp_numeric_limits<typename remove_cv<_Tp>::type> __base; @@ -526,7 +526,7 @@ template <class _Tp> _LIBCPP_CONSTEXPR const float_round_style numeric_limits<_Tp>::round_style; template <class _Tp> -class _LIBCPP_VISIBLE numeric_limits<const _Tp> +class _LIBCPP_TYPE_VIS numeric_limits<const _Tp> : private numeric_limits<_Tp> { typedef numeric_limits<_Tp> __base; @@ -619,7 +619,7 @@ template <class _Tp> _LIBCPP_CONSTEXPR const float_round_style numeric_limits<const _Tp>::round_style; template <class _Tp> -class _LIBCPP_VISIBLE numeric_limits<volatile _Tp> +class _LIBCPP_TYPE_VIS numeric_limits<volatile _Tp> : private numeric_limits<_Tp> { typedef numeric_limits<_Tp> __base; @@ -712,7 +712,7 @@ template <class _Tp> _LIBCPP_CONSTEXPR const float_round_style numeric_limits<volatile _Tp>::round_style; template <class _Tp> -class _LIBCPP_VISIBLE numeric_limits<const volatile _Tp> +class _LIBCPP_TYPE_VIS numeric_limits<const volatile _Tp> : private numeric_limits<_Tp> { typedef numeric_limits<_Tp> __base; |