Slight tweak of get_c_array

[SVN r66712]
This commit is contained in:
Marshall Clow
2010-11-24 16:13:12 +00:00
parent 80fa50df2e
commit 5329bd6f1c

View File

@ -368,7 +368,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>
const typename detail::c_array<T,N>::type& get_c_array(const boost::array<T,N>& arg) typename const detail::c_array<T,N>::type& get_c_array(const boost::array<T,N>& arg)
{ {
return arg.elems; return arg.elems;
} }