From 292eeb5c902cec1e2ab6fad1e1bb1c5ad1b90734 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 20 Sep 2001 11:44:34 +0000 Subject: [PATCH] Fixes for broken using declarations [SVN r11164] --- integer_test.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/integer_test.cpp b/integer_test.cpp index a5ad544..0b74566 100644 --- a/integer_test.cpp +++ b/integer_test.cpp @@ -38,8 +38,12 @@ namespace boost int test_main(int,char**) { +#ifndef BOOST_NO_USING_TEMPLATE using boost::int_t; using boost::uint_t; +#else + using namespace boost; +#endif #ifdef BOOST_SHOW_TYPES std::cout << 32 << ' '; test( int_t<32>::least() );