Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r58747 - in branches/release: . boost boost/fusion boost/graph boost/io boost/numeric/ublas boost/property_tree boost/variant doc libs libs/fusion libs/graph_parallel libs/mpl/doc/refmanual libs/mpl/doc/src/refmanual libs/numeric/ublas libs/numeric/ublas/doc libs/property_tree people status tools tools/regression wiki
From: daniel_james_at_[hidden]
Date: 2010-01-06 03:55:24


Author: danieljames
Date: 2010-01-06 03:55:23 EST (Wed, 06 Jan 2010)
New Revision: 58747
URL: http://svn.boost.org/trac/boost/changeset/58747

Log:
Merge warning fix from trunk. Fixes #1414.

Properties modified:
   branches/release/ (props changed)
   branches/release/Jamroot (props changed)
   branches/release/boost/ (props changed)
   branches/release/boost/fusion/ (props changed)
   branches/release/boost/graph/ (props changed)
   branches/release/boost/numeric/ublas/ (props changed)
   branches/release/boost/property_tree/ (props changed)
   branches/release/boost/variant/ (props changed)
   branches/release/doc/ (props changed)
   branches/release/index.html (props changed)
   branches/release/libs/ (props changed)
   branches/release/libs/fusion/ (props changed)
   branches/release/libs/graph_parallel/ (props changed)
   branches/release/libs/mpl/doc/refmanual/broken-compiler-workarounds.html (props changed)
   branches/release/libs/mpl/doc/refmanual/categorized-index-concepts.html (props changed)
   branches/release/libs/mpl/doc/refmanual/cfg-no-preprocessed-headers.html (props changed)
   branches/release/libs/mpl/doc/refmanual/composition-and-argument-binding.html (props changed)
   branches/release/libs/mpl/doc/refmanual/data-types-concepts.html (props changed)
   branches/release/libs/mpl/doc/refmanual/data-types-miscellaneous.html (props changed)
   branches/release/libs/mpl/doc/refmanual/extensible-associative-sequence.html (props changed)
   branches/release/libs/mpl/doc/refmanual/inserter-class.html (props changed)
   branches/release/libs/mpl/doc/refmanual/tag-dispatched-metafunction.html (props changed)
   branches/release/libs/mpl/doc/refmanual/trivial-metafunctions-summary.html (props changed)
   branches/release/libs/mpl/doc/src/refmanual/Iterators-Iterator.rst (props changed)
   branches/release/libs/numeric/ublas/ (props changed)
   branches/release/libs/numeric/ublas/doc/ (props changed)
   branches/release/libs/property_tree/ (props changed)
   branches/release/people/ (props changed)
   branches/release/status/ (props changed)
   branches/release/tools/ (props changed)
   branches/release/tools/regression/ (props changed)
   branches/release/wiki/ (props changed)
Text files modified:
   branches/release/boost/io/ios_state.hpp | 8 ++++++++
   1 files changed, 8 insertions(+), 0 deletions(-)

Modified: branches/release/boost/io/ios_state.hpp
==============================================================================
--- branches/release/boost/io/ios_state.hpp (original)
+++ branches/release/boost/io/ios_state.hpp 2010-01-06 03:55:23 EST (Wed, 06 Jan 2010)
@@ -128,6 +128,7 @@
 private:
     state_type & s_save_;
     aspect_type const a_save_;
+ basic_ios_iostate_saver& operator=(const basic_ios_iostate_saver&);
 };
 
 template < typename Ch, class Tr >
@@ -156,6 +157,7 @@
 private:
     state_type & s_save_;
     aspect_type const a_save_;
+ basic_ios_exception_saver& operator=(const basic_ios_exception_saver&);
 };
 
 template < typename Ch, class Tr >
@@ -180,6 +182,7 @@
 private:
     state_type & s_save_;
     aspect_type const a_save_;
+ basic_ios_tie_saver& operator=(const basic_ios_tie_saver&);
 };
 
 template < typename Ch, class Tr >
@@ -204,6 +207,7 @@
 private:
     state_type & s_save_;
     aspect_type const a_save_;
+ basic_ios_rdbuf_saver& operator=(const basic_ios_rdbuf_saver&);
 };
 
 template < typename Ch, class Tr >
@@ -228,6 +232,7 @@
 private:
     state_type & s_save_;
     aspect_type const a_save_;
+ basic_ios_fill_saver& operator=(const basic_ios_fill_saver&);
 };
 
 #ifndef BOOST_NO_STD_LOCALE
@@ -253,6 +258,7 @@
 private:
     state_type & s_save_;
     aspect_type const a_save_;
+ basic_ios_locale_saver& operator=(const basic_ios_locale_saver&);
 };
 #endif
 
@@ -392,6 +398,8 @@
     #ifndef BOOST_NO_STD_LOCALE
     ::std::locale const a9_save_;
     #endif
+
+ basic_ios_all_saver& operator=(const basic_ios_all_saver&);
 };
 
 class ios_all_word_saver


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