1
0
forked from boostorg/io

Merge warning fix from trunk. Fixes #1414.

[SVN r58747]
This commit is contained in:
Daniel James
2010-01-06 08:55:23 +00:00
parent 772d182b24
commit 93932c0d55

View File

@@ -128,6 +128,7 @@ public:
private: private:
state_type & s_save_; state_type & s_save_;
aspect_type const a_save_; aspect_type const a_save_;
basic_ios_iostate_saver& operator=(const basic_ios_iostate_saver&);
}; };
template < typename Ch, class Tr > template < typename Ch, class Tr >
@@ -156,6 +157,7 @@ public:
private: private:
state_type & s_save_; state_type & s_save_;
aspect_type const a_save_; aspect_type const a_save_;
basic_ios_exception_saver& operator=(const basic_ios_exception_saver&);
}; };
template < typename Ch, class Tr > template < typename Ch, class Tr >
@@ -180,6 +182,7 @@ public:
private: private:
state_type & s_save_; state_type & s_save_;
aspect_type const a_save_; aspect_type const a_save_;
basic_ios_tie_saver& operator=(const basic_ios_tie_saver&);
}; };
template < typename Ch, class Tr > template < typename Ch, class Tr >
@@ -204,6 +207,7 @@ public:
private: private:
state_type & s_save_; state_type & s_save_;
aspect_type const a_save_; aspect_type const a_save_;
basic_ios_rdbuf_saver& operator=(const basic_ios_rdbuf_saver&);
}; };
template < typename Ch, class Tr > template < typename Ch, class Tr >
@@ -228,6 +232,7 @@ public:
private: private:
state_type & s_save_; state_type & s_save_;
aspect_type const a_save_; aspect_type const a_save_;
basic_ios_fill_saver& operator=(const basic_ios_fill_saver&);
}; };
#ifndef BOOST_NO_STD_LOCALE #ifndef BOOST_NO_STD_LOCALE
@@ -253,6 +258,7 @@ public:
private: private:
state_type & s_save_; state_type & s_save_;
aspect_type const a_save_; aspect_type const a_save_;
basic_ios_locale_saver& operator=(const basic_ios_locale_saver&);
}; };
#endif #endif
@@ -392,6 +398,8 @@ private:
#ifndef BOOST_NO_STD_LOCALE #ifndef BOOST_NO_STD_LOCALE
::std::locale const a9_save_; ::std::locale const a9_save_;
#endif #endif
basic_ios_all_saver& operator=(const basic_ios_all_saver&);
}; };
class ios_all_word_saver class ios_all_word_saver