From f1d6e86af98b7e5d18adccf504c158a60361166c Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 20 Jul 2002 12:06:34 +0000 Subject: [PATCH] Fixed VC6 warnings. [SVN r14547] --- test/boost_no_std_wstreambuf.ipp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/boost_no_std_wstreambuf.ipp b/test/boost_no_std_wstreambuf.ipp index a66b7447..445dd2e9 100644 --- a/test/boost_no_std_wstreambuf.ipp +++ b/test/boost_no_std_wstreambuf.ipp @@ -29,8 +29,9 @@ protected: typename parser_buf::pos_type seekpos(pos_type sp, ::std::ios_base::openmode which); typename parser_buf::pos_type seekoff(off_type off, ::std::ios_base::seekdir way, ::std::ios_base::openmode which); private: - parser_buf& operator=(const parser_buf&); - parser_buf(const parser_buf&); + parser_buf& operator=(const parser_buf&) + { return *this; }; + parser_buf(const parser_buf&){}; }; template