Boost.Range fix for the range_size metafunction. This showed as a compilation failure on VACPP.

[SVN r61144]
This commit is contained in:
Neil Groves 2010-04-08 10:40:14 +00:00
parent b573b6c9bf
commit 52c04e94f9

3
include/boost/range/size_type.hpp Executable file → Normal file
View File

@ -67,7 +67,8 @@ namespace boost
{ };
template< class T >
struct range_size<const T > : range_size<T>
struct range_size<const T >
: detail::range_size<T>
{ };
} // namespace boost