Merge pull request #5 from Lastique/patch-1

Fix compilation for Oracle Studio 12.5
This commit is contained in:
Marshall Clow
2017-01-23 20:00:25 -08:00
committed by GitHub

View File

@ -373,7 +373,7 @@ namespace boost {
// Specific for boost::array: simply returns its elems data member.
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;
}