diff --git a/include/boost/detail/iomanip.hpp b/include/boost/detail/iomanip.hpp index 7b41cdd..d45ecb5 100644 --- a/include/boost/detail/iomanip.hpp +++ b/include/boost/detail/iomanip.hpp @@ -1,9 +1,9 @@ -/*<-============================================================================ - Copyright (c) 2010 Bryce Lelbach +/*============================================================================== + Copyright (c) 2010-2011 Bryce Lelbach Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -============================================================================->*/ +==============================================================================*/ #ifndef BOOST_DETAIL_IOMANIP_HPP #define BOOST_DETAIL_IOMANIP_HPP @@ -26,7 +26,8 @@ class resetiosflags_manip { template friend std::basic_istream& operator>> (std::basic_istream& is, - resetiosflags_manip const& x) { + resetiosflags_manip const& x) + { is.unsetf(x.mask); return is; } @@ -34,7 +35,8 @@ class resetiosflags_manip { template friend std::basic_ostream& operator<< (std::basic_ostream& os, - resetiosflags_manip const& x) { + resetiosflags_manip const& x) + { os.unsetf(x.mask); return os; }