workaround for a problem of GCC 2.95 with local scope using directives

[SVN r25077]
This commit is contained in:
Joaquín M. López Muñoz
2004-09-14 07:15:51 +00:00
parent 54ac5bebd3
commit 053cc53eea

View File

@ -44,10 +44,11 @@ private:
int& m_counter;
};
using namespace boost;
template <class Value>
void test(BOOST_EXPLICIT_TEMPLATE_TYPE(Value))
{
using namespace boost;
Value zero(0), one(1);
int counter = 0;
less_count<Value> lc(counter);