Re: [Boost-bugs] [Boost C++ Libraries] #4459: [BGL] Trunk build broken as of 20100721

Subject: Re: [Boost-bugs] [Boost C++ Libraries] #4459: [BGL] Trunk build broken as of 20100721
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2010-07-22 13:10:51


#4459: [BGL] Trunk build broken as of 20100721
---------------------------------------+------------------------------------
  Reporter: ramon.casellas@… | Owner: fcacciola
      Type: Bugs | Status: new
 Milestone: Boost 1.44.0 | Component: optional
   Version: Boost 1.44.0 | Severity: Showstopper
Resolution: | Keywords:
---------------------------------------+------------------------------------

Comment (by anonymous):

 The fix seems trivial and related to optional changes:

 {{{
 Index: boost/optional/optional_io.hpp
 ===================================================================
 --- boost/optional/optional_io.hpp (revision 64257)
 +++ boost/optional/optional_io.hpp (working copy)
 @@ -74,12 +74,12 @@
      else
      {
        if ( d != '-')
 - in.setstate( ios::failbit );
 + in.setstate( std::ios::failbit );

        d = in.get();

        if ( d != '-')
 - in.setstate( ios::failbit );
 + in.setstate( std::ios::failbit );

        v = optional<T>() ;
      }

 }}}

-- 
Ticket URL: <https://svn.boost.org/trac/boost/ticket/4459#comment:2>
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:50:03 UTC