mirror of
https://github.com/boostorg/io.git
synced 2025-07-29 20:07:13 +02:00
Trivial patches to silence MSVC warnings.
[SVN r42076]
This commit is contained in:
@ -50,6 +50,8 @@ public:
|
||||
private:
|
||||
state_type & s_save_;
|
||||
aspect_type const a_save_;
|
||||
|
||||
ios_flags_saver& operator=(const ios_flags_saver&);
|
||||
};
|
||||
|
||||
class ios_precision_saver
|
||||
@ -73,6 +75,8 @@ public:
|
||||
private:
|
||||
state_type & s_save_;
|
||||
aspect_type const a_save_;
|
||||
|
||||
ios_precision_saver& operator=(const ios_precision_saver&);
|
||||
};
|
||||
|
||||
class ios_width_saver
|
||||
@ -96,6 +100,7 @@ public:
|
||||
private:
|
||||
state_type & s_save_;
|
||||
aspect_type const a_save_;
|
||||
ios_width_saver& operator=(const ios_width_saver&);
|
||||
};
|
||||
|
||||
|
||||
@ -277,6 +282,8 @@ private:
|
||||
state_type & s_save_;
|
||||
aspect_type const a_save_;
|
||||
index_type const i_save_;
|
||||
|
||||
ios_iword_saver& operator=(const ios_iword_saver&);
|
||||
};
|
||||
|
||||
class ios_pword_saver
|
||||
@ -302,6 +309,8 @@ private:
|
||||
state_type & s_save_;
|
||||
aspect_type const a_save_;
|
||||
index_type const i_save_;
|
||||
|
||||
ios_pword_saver operator=(const ios_pword_saver&);
|
||||
};
|
||||
|
||||
|
||||
@ -332,6 +341,8 @@ private:
|
||||
state_type::fmtflags const a1_save_;
|
||||
::std::streamsize const a2_save_;
|
||||
::std::streamsize const a3_save_;
|
||||
|
||||
ios_base_all_saver& operator=(const ios_base_all_saver&);
|
||||
};
|
||||
|
||||
template < typename Ch, class Tr >
|
||||
@ -408,6 +419,8 @@ private:
|
||||
index_type const i_save_;
|
||||
long const a1_save_;
|
||||
void * const a2_save_;
|
||||
|
||||
ios_all_word_saver& operator=(const ios_all_word_saver&);
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user