Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r68137 - trunk/boost/detail
From: admin_at_[hidden]
Date: 2011-01-13 19:23:19


Author: wash
Date: 2011-01-13 19:23:15 EST (Thu, 13 Jan 2011)
New Revision: 68137
URL: http://svn.boost.org/trac/boost/changeset/68137

Log:
Updating copyright.

Text files modified:
   trunk/boost/detail/iomanip.hpp | 12 +++++++-----
   1 files changed, 7 insertions(+), 5 deletions(-)

Modified: trunk/boost/detail/iomanip.hpp
==============================================================================
--- trunk/boost/detail/iomanip.hpp (original)
+++ trunk/boost/detail/iomanip.hpp 2011-01-13 19:23:15 EST (Thu, 13 Jan 2011)
@@ -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 @@
   template<class CharT, class Traits>
   friend std::basic_istream<CharT, Traits>&
   operator>> (std::basic_istream<CharT, Traits>& is,
- resetiosflags_manip const& x) {
+ resetiosflags_manip const& x)
+ {
     is.unsetf(x.mask);
     return is;
   }
@@ -34,7 +35,8 @@
   template<class CharT, class Traits>
   friend std::basic_ostream<CharT, Traits>&
   operator<< (std::basic_ostream<CharT, Traits>& os,
- resetiosflags_manip const& x) {
+ resetiosflags_manip const& x)
+ {
     os.unsetf(x.mask);
     return os;
   }


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk