mirror of
https://github.com/boostorg/range.git
synced 2025-07-30 12:57:28 +02:00
Merged revisions 41443-41487 via svnmerge from
https://svn.boost.org/svn/boost/trunk ........ r41446 | grafik | 2007-11-28 15:26:41 -0800 (Wed, 28 Nov 2007) | 1 line Fix usage of HTTPS for getting the boost-build.jam file when using an empty user, i.e. when using tarballs. ........ r41447 | danieljames | 2007-11-28 15:40:38 -0800 (Wed, 28 Nov 2007) | 4 lines Move the review wizard reports to the new site. I'm not sure about how this is organized - I would the expect the review schedule (currently in community/reviews) and reports to be together. Refs #1368. ........ r41457 | nesotto | 2007-11-29 01:19:24 -0800 (Thu, 29 Nov 2007) | 1 line fixed a serious oversigt ........ r41458 | bgubenko | 2007-11-29 05:11:11 -0800 (Thu, 29 Nov 2007) | 1 line use full exact names for gcc toolsets on HP-UX ........ r41459 | hkaiser | 2007-11-29 06:24:00 -0800 (Thu, 29 Nov 2007) | 1 line Fixing #1480 (Boost:::Spirit bug in tree_to_xml.ipp). ........ r41460 | nesotto | 2007-11-29 06:33:29 -0800 (Thu, 29 Nov 2007) | 1 line added comment to warn about typical compile-error ........ r41462 | hkaiser | 2007-11-29 06:44:34 -0800 (Thu, 29 Nov 2007) | 1 line Fixing compilation of Spirit test tree_to_xml for gcc. ........ r41467 | hkaiser | 2007-11-29 09:54:16 -0800 (Thu, 29 Nov 2007) | 1 line Fixed tree_to_xml code for gcc3.4.4 (Cygwin). ........ r41477 | chris_kohlhoff | 2007-11-29 14:26:02 -0800 (Thu, 29 Nov 2007) | 3 lines Update implementation notes to match current Win32 implementation where timers no longer require a separate thread. ........ r41478 | chris_kohlhoff | 2007-11-29 14:26:44 -0800 (Thu, 29 Nov 2007) | 2 lines Add macro documentation. ........ r41479 | danieljames | 2007-11-29 14:34:36 -0800 (Thu, 29 Nov 2007) | 4 lines Move the feature model diagrams into the community/C++ section of the beta site. Not a great fit but I couldn't find anywhere better to put it. Fixes #1349. ........ r41480 | bemandawes | 2007-11-29 14:46:28 -0800 (Thu, 29 Nov 2007) | 1 line Add Tobias as function_types maintainer ........ r41481 | danieljames | 2007-11-29 14:51:54 -0800 (Thu, 29 Nov 2007) | 4 lines We're missing a page for the root of the 'C++' section, so I just moved the links for the sub-pages from the old 'more' page into one. Obviously needs more work but it fills the hole for now. ........ r41485 | grafik | 2007-11-29 17:41:20 -0800 (Thu, 29 Nov 2007) | 1 line Add combined architectures, from Mat Marcus, in support of Darwin universal builds. ........ [SVN r41488]
This commit is contained in:
@ -77,8 +77,8 @@ namespace boost
|
||||
{
|
||||
typedef BOOST_DEDUCED_TYPENAME boost::range_difference<Left>::type sz_type;
|
||||
|
||||
sz_type l_size = boost::size( l ),
|
||||
r_size = boost::size( r );
|
||||
sz_type l_size = boost::distance( l ),
|
||||
r_size = boost::distance( r );
|
||||
|
||||
if( l_size != r_size )
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user