From 99f3841839e2ff8ec2c38b64446ee7aa4be35dab Mon Sep 17 00:00:00 2001 From: Bryce Adelstein-Lelbach Date: Fri, 14 Jan 2011 00:23:15 +0000 Subject: [PATCH] Updating copyright. [SVN r68137] --- include/boost/detail/iomanip.hpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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; }