*** empty log message ***

[SVN r24140]
This commit is contained in:
Thorsten Jørgen Ottosen
2004-07-28 11:01:10 +00:00
parent e26056b475
commit 5a479378d6
5 changed files with 10 additions and 11 deletions

View File

@ -23,7 +23,7 @@ namespace boost
template< class Range >
class sub_range : public iterator_range< BOOST_DEDUCED_TYPENAME result_iterator_of<Range>::type >
{
typedef BOOST_DEDUCED_TYPENAME result_iterator_of<Range>::type iterator_t;
typedef iterator_range< iterator_t > base;
@ -65,8 +65,7 @@ namespace boost
size_type size() const
{
return base::size();
}
}
};