Fixed VC6 warnings.

[SVN r14547]
This commit is contained in:
John Maddock
2002-07-20 12:06:34 +00:00
parent 5406c65596
commit f1d6e86af9

View File

@ -29,8 +29,9 @@ protected:
typename parser_buf<charT, traits>::pos_type seekpos(pos_type sp, ::std::ios_base::openmode which); typename parser_buf<charT, traits>::pos_type seekpos(pos_type sp, ::std::ios_base::openmode which);
typename parser_buf<charT, traits>::pos_type seekoff(off_type off, ::std::ios_base::seekdir way, ::std::ios_base::openmode which); typename parser_buf<charT, traits>::pos_type seekoff(off_type off, ::std::ios_base::seekdir way, ::std::ios_base::openmode which);
private: private:
parser_buf& operator=(const parser_buf&); parser_buf& operator=(const parser_buf&)
parser_buf(const parser_buf&); { return *this; };
parser_buf(const parser_buf&){};
}; };
template<class charT, class traits> template<class charT, class traits>