Removed tabs

[SVN r70442]
This commit is contained in:
Marshall Clow
2011-03-22 23:55:20 +00:00
parent 111e93aa4c
commit e6a44cf529
2 changed files with 15 additions and 15 deletions

View File

@ -368,17 +368,17 @@ namespace boost {
}
#if defined(__SUNPRO_CC)
// Trac ticket #4757; the Sun Solaris compiler can't handle
// syntax like 'T(&get_c_array(boost::array<T,N>& arg))[N]'
//
// We can't just use this for all compilers, because the
// borland compilers can't handle this form.
namespace detail {
// Trac ticket #4757; the Sun Solaris compiler can't handle
// syntax like 'T(&get_c_array(boost::array<T,N>& arg))[N]'
//
// We can't just use this for all compilers, because the
// borland compilers can't handle this form.
namespace detail {
template <typename T, std::size_t N> struct c_array
{
typedef T type[N];
};
}
}
// Specific for boost::array: simply returns its elems data member.
template <typename T, std::size_t N>
@ -408,7 +408,7 @@ namespace boost {
return arg.elems;
}
#endif
#if 0
// Overload for std::array, assuming that std::array will have
// explicit conversion functions as discussed at the WG21 meeting