[Boost-bugs] [Boost C++ Libraries] #2533: minor typo in boost.variant tutorial

Subject: [Boost-bugs] [Boost C++ Libraries] #2533: minor typo in boost.variant tutorial
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2008-11-25 12:16:31


#2533: minor typo in boost.variant tutorial
--------------------------+-------------------------------------------------
 Reporter: anonymous | Owner: matias
     Type: Bugs | Status: new
Milestone: Boost 1.38.0 | Component: Documentation
  Version: Boost 1.37.0 | Severity: Cosmetic
 Keywords: |
--------------------------+-------------------------------------------------
 At the very bottom of
 [http://www.boost.org/doc/libs/1_37_0/doc/html/variant/tutorial.html#variant.tutorial
 .binary-visitation boost.variant tutorial] :
 {{{
 are_strict_equals visitor;
 assert( std::equal(
       v1.begin(), v1.end(), v2.begin()
     , boost::apply_visitor( visitor )
     ) );
 }}}
 should be
 {{{
 are_strict_equals visitor;
 assert( std::equal(
       seq1.begin(), seq1.end(), seq2.begin()
     , boost::apply_visitor( visitor )
     ) );
 }}}

-- 
Ticket URL: <https://svn.boost.org/trac/boost/ticket/2533>
Boost C++ Libraries <http://www.boost.org/>
Boost provides free peer-reviewed portable C++ source libraries.

This archive was generated by hypermail 2.1.7 : 2017-02-16 18:49:59 UTC