From 60f208b6800d43f1749c29901048439fa3baeeb6 Mon Sep 17 00:00:00 2001 From: Jonathan Turkanis Date: Mon, 30 May 2005 07:38:07 +0000 Subject: [PATCH] removed debugging code [SVN r29290] --- .../filter/symmetric_filter_adapter.hpp | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/include/boost/iostreams/filter/symmetric_filter_adapter.hpp b/include/boost/iostreams/filter/symmetric_filter_adapter.hpp index 9640c28..fb62590 100755 --- a/include/boost/iostreams/filter/symmetric_filter_adapter.hpp +++ b/include/boost/iostreams/filter/symmetric_filter_adapter.hpp @@ -81,25 +81,25 @@ public: { }; // BEGIN DEBUG - explicit symmetric_filter_adapter(int buffer_size) - : pimpl_(new impl(buffer_size)) - { } + //explicit symmetric_filter_adapter(int buffer_size) + // : pimpl_(new impl(buffer_size)) + // { } - template - symmetric_filter_adapter(int buffer_size, const T0& t0) - : pimpl_(new impl(buffer_size, t0)) - { } + //template + //symmetric_filter_adapter(int buffer_size, const T0& t0) + // : pimpl_(new impl(buffer_size, t0)) + // { } - template - symmetric_filter_adapter(int buffer_size, const T0& t0, const T1& t1) - : pimpl_(new impl(buffer_size, t0, t1)) - { } + //template + //symmetric_filter_adapter(int buffer_size, const T0& t0, const T1& t1) + // : pimpl_(new impl(buffer_size, t0, t1)) + // { } - template - symmetric_filter_adapter( int buffer_size, const T0& t0, - const T1& t1, const T2& t2 ) - : pimpl_(new impl(buffer_size, t0, t1, t2)) - { } + //template + //symmetric_filter_adapter( int buffer_size, const T0& t0, + // const T1& t1, const T2& t2 ) + // : pimpl_(new impl(buffer_size, t0, t1, t2)) + // { } // END DEBUG // Expands to a sequence of ctors which forward to impl. @@ -112,8 +112,8 @@ public: BOOST_PP_ENUM_PARAMS(n, t))) \ { } \ /**/ - //#define BOOST_PP_LOCAL_LIMITS (0, BOOST_IOSTREAMS_MAX_FORWARDING_ARITY) - //#include BOOST_PP_LOCAL_ITERATE() + #define BOOST_PP_LOCAL_LIMITS (0, BOOST_IOSTREAMS_MAX_FORWARDING_ARITY) + #include BOOST_PP_LOCAL_ITERATE() #undef BOOST_PP_LOCAL_MACRO template