forked from boostorg/array
Merge pull request #5 from Lastique/patch-1
Fix compilation for Oracle Studio 12.5
This commit is contained in:
@ -373,7 +373,7 @@ namespace boost {
|
|||||||
|
|
||||||
// Specific for boost::array: simply returns its elems data member.
|
// Specific for boost::array: simply returns its elems data member.
|
||||||
template <typename T, std::size_t N>
|
template <typename T, std::size_t N>
|
||||||
typename const detail::c_array<T,N>::type& get_c_array(const boost::array<T,N>& arg)
|
typename detail::c_array<T,N>::type const& get_c_array(const boost::array<T,N>& arg)
|
||||||
{
|
{
|
||||||
return arg.elems;
|
return arg.elems;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user