From 158aa84f31ffcc3958891cf0b5fc4f91442eaa81 Mon Sep 17 00:00:00 2001 From: Jonathan Turkanis Date: Fri, 3 Jun 2005 22:42:43 +0000 Subject: [PATCH] gcc 2.95 fix [SVN r29420] --- include/boost/iostreams/code_converter.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/boost/iostreams/code_converter.hpp b/include/boost/iostreams/code_converter.hpp index 6c8071c..76f7e72 100755 --- a/include/boost/iostreams/code_converter.hpp +++ b/include/boost/iostreams/code_converter.hpp @@ -230,6 +230,9 @@ public: public: code_converter() { } #if BOOST_WORKAROUND(__GNUC__, < 3) + code_converter(code_converter& rhs) + : code_converter_base(rhs) + { } code_converter(const code_converter& rhs) : code_converter_base(rhs) { }