mirror of
https://github.com/boostorg/integer.git
synced 2025-07-29 20:27:14 +02:00
Fixes for broken using declarations
[SVN r11164]
This commit is contained in:
@ -38,8 +38,12 @@ namespace boost
|
|||||||
|
|
||||||
int test_main(int,char**)
|
int test_main(int,char**)
|
||||||
{
|
{
|
||||||
|
#ifndef BOOST_NO_USING_TEMPLATE
|
||||||
using boost::int_t;
|
using boost::int_t;
|
||||||
using boost::uint_t;
|
using boost::uint_t;
|
||||||
|
#else
|
||||||
|
using namespace boost;
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef BOOST_SHOW_TYPES
|
#ifdef BOOST_SHOW_TYPES
|
||||||
std::cout << 32 << ' '; test( int_t<32>::least() );
|
std::cout << 32 << ' '; test( int_t<32>::least() );
|
||||||
|
Reference in New Issue
Block a user