From 815a6cc1e325a4e8596b91756039a7d699471b11 Mon Sep 17 00:00:00 2001 From: dim Date: Sat, 27 Apr 2013 22:47:52 +0000 Subject: Merge libc++ trunk r180598. Contains several minor cleanups and bug fixes, no major changes. MFC after: 2 weeks --- contrib/libc++/include/array | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'contrib/libc++/include/array') diff --git a/contrib/libc++/include/array b/contrib/libc++/include/array index f4a3020..bcf5347 100644 --- a/contrib/libc++/include/array +++ b/contrib/libc++/include/array @@ -118,7 +118,7 @@ template T&& get(array&&) noexcept; _LIBCPP_BEGIN_NAMESPACE_STD template -struct _LIBCPP_VISIBLE array +struct _LIBCPP_TYPE_VIS array { // types: typedef array __self; @@ -284,22 +284,22 @@ swap(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y) } template -class _LIBCPP_VISIBLE tuple_size > +class _LIBCPP_TYPE_VIS tuple_size > : public integral_constant {}; template -class _LIBCPP_VISIBLE tuple_size > +class _LIBCPP_TYPE_VIS tuple_size > : public integral_constant {}; template -class _LIBCPP_VISIBLE tuple_element<_Ip, array<_Tp, _Size> > +class _LIBCPP_TYPE_VIS tuple_element<_Ip, array<_Tp, _Size> > { public: typedef _Tp type; }; template -class _LIBCPP_VISIBLE tuple_element<_Ip, const array<_Tp, _Size> > +class _LIBCPP_TYPE_VIS tuple_element<_Ip, const array<_Tp, _Size> > { public: typedef const _Tp type; -- cgit v1.1