forked from boostorg/range
fixed a serious oversigt
[SVN r41457]
This commit is contained in:
@ -77,8 +77,8 @@ namespace boost
|
|||||||
{
|
{
|
||||||
typedef BOOST_DEDUCED_TYPENAME boost::range_difference<Left>::type sz_type;
|
typedef BOOST_DEDUCED_TYPENAME boost::range_difference<Left>::type sz_type;
|
||||||
|
|
||||||
sz_type l_size = boost::size( l ),
|
sz_type l_size = boost::distance( l ),
|
||||||
r_size = boost::size( r );
|
r_size = boost::distance( r );
|
||||||
|
|
||||||
if( l_size != r_size )
|
if( l_size != r_size )
|
||||||
return false;
|
return false;
|
||||||
|
Reference in New Issue
Block a user