mirror of
https://github.com/boostorg/utility.git
synced 2025-07-30 04:47:30 +02:00
Fix for sunpro 5.3 (array specialisations don't work)
[SVN r11354]
This commit is contained in:
@ -109,7 +109,7 @@ struct call_traits<T&const volatile>
|
|||||||
typedef T& param_type; // hh removed const
|
typedef T& param_type; // hh removed const
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef __SUNPRO_CC
|
||||||
template <typename T, std::size_t N>
|
template <typename T, std::size_t N>
|
||||||
struct call_traits<T [N]>
|
struct call_traits<T [N]>
|
||||||
{
|
{
|
||||||
@ -135,6 +135,7 @@ public:
|
|||||||
typedef const array_type& const_reference;
|
typedef const array_type& const_reference;
|
||||||
typedef const T* const param_type;
|
typedef const T* const param_type;
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user