From 053cc53eeac6ae37d47a1d9ac3a135348d18f138 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20M=2E=20L=C3=B3pez=20Mu=C3=B1oz?= Date: Tue, 14 Sep 2004 07:15:51 +0000 Subject: [PATCH] workaround for a problem of GCC 2.95 with local scope using directives [SVN r25077] --- minmax/test/minmax_test.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/minmax/test/minmax_test.cpp b/minmax/test/minmax_test.cpp index 7d4b823..6e8bd60 100644 --- a/minmax/test/minmax_test.cpp +++ b/minmax/test/minmax_test.cpp @@ -44,10 +44,11 @@ private: int& m_counter; }; +using namespace boost; + template void test(BOOST_EXPLICIT_TEMPLATE_TYPE(Value)) { - using namespace boost; Value zero(0), one(1); int counter = 0; less_count lc(counter);