Updating copyright.

[SVN r68137]
This commit is contained in:
Bryce Adelstein-Lelbach
2011-01-14 00:23:15 +00:00
parent 91db205d17
commit 99f3841839

View File

@ -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 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) file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
============================================================================->*/ ==============================================================================*/
#ifndef BOOST_DETAIL_IOMANIP_HPP #ifndef BOOST_DETAIL_IOMANIP_HPP
#define BOOST_DETAIL_IOMANIP_HPP #define BOOST_DETAIL_IOMANIP_HPP
@ -26,7 +26,8 @@ class resetiosflags_manip {
template<class CharT, class Traits> template<class CharT, class Traits>
friend std::basic_istream<CharT, Traits>& friend std::basic_istream<CharT, Traits>&
operator>> (std::basic_istream<CharT, Traits>& is, operator>> (std::basic_istream<CharT, Traits>& is,
resetiosflags_manip const& x) { resetiosflags_manip const& x)
{
is.unsetf(x.mask); is.unsetf(x.mask);
return is; return is;
} }
@ -34,7 +35,8 @@ class resetiosflags_manip {
template<class CharT, class Traits> template<class CharT, class Traits>
friend std::basic_ostream<CharT, Traits>& friend std::basic_ostream<CharT, Traits>&
operator<< (std::basic_ostream<CharT, Traits>& os, operator<< (std::basic_ostream<CharT, Traits>& os,
resetiosflags_manip const& x) { resetiosflags_manip const& x)
{
os.unsetf(x.mask); os.unsetf(x.mask);
return os; return os;
} }