Add specialization of sp_if_not_array<T[N]>.

[SVN r81223]
This commit is contained in:
Peter Dimov
2012-11-06 16:23:09 +00:00
parent d8eb2fc105
commit bb72e0a092

View File

@ -117,6 +117,10 @@ template< class T > struct sp_if_not_array< T[] >
{
};
template< class T, std::size_t N > struct sp_if_not_array< T[N] >
{
};
#endif
} // namespace detail