diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2013-04-27 22:47:52 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2013-04-27 22:47:52 +0000 | 
| commit | 1bf9f7c1c5ed00800ed5db4857b042e40ab9a47e (patch) | |
| tree | e5a6a26d0973c6968273f6fabb61cb3d624be555 /contrib/libc++/include/array | |
| parent | a9caca6a7584ca60d7c332aada95f488d051f533 (diff) | |
| parent | 527d9fcb66574fdd657c3235c0d7cba7c5439d5c (diff) | |
Notes
Diffstat (limited to 'contrib/libc++/include/array')
| -rw-r--r-- | contrib/libc++/include/array | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/contrib/libc++/include/array b/contrib/libc++/include/array index f4a3020aeae7..bcf53478677e 100644 --- a/contrib/libc++/include/array +++ b/contrib/libc++/include/array @@ -118,7 +118,7 @@ template <int I, class T, size_t N> T&& get(array<T, N>&&) noexcept;  _LIBCPP_BEGIN_NAMESPACE_STD  template <class _Tp, size_t _Size> -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 _Tp, size_t _Size> -class _LIBCPP_VISIBLE tuple_size<array<_Tp, _Size> > +class _LIBCPP_TYPE_VIS tuple_size<array<_Tp, _Size> >      : public integral_constant<size_t, _Size> {};  template <class _Tp, size_t _Size> -class _LIBCPP_VISIBLE tuple_size<const array<_Tp, _Size> > +class _LIBCPP_TYPE_VIS tuple_size<const array<_Tp, _Size> >      : public integral_constant<size_t, _Size> {};  template <size_t _Ip, class _Tp, size_t _Size> -class _LIBCPP_VISIBLE tuple_element<_Ip, array<_Tp, _Size> > +class _LIBCPP_TYPE_VIS tuple_element<_Ip, array<_Tp, _Size> >  {  public:      typedef _Tp type;  };  template <size_t _Ip, class _Tp, size_t _Size> -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; | 
