Fixes for broken using declarations

[SVN r11164]
This commit is contained in:
John Maddock
2001-09-20 11:44:34 +00:00
parent 8a105dab3f
commit 292eeb5c90

View File

@ -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() );