diff --git a/test/basic.cpp b/test/basic.cpp index aa49309..077823d 100755 --- a/test/basic.cpp +++ b/test/basic.cpp @@ -20,16 +20,14 @@ #include -using namespace std; -using namespace boost; using namespace boost::assign; void check_basic_usage() { - vector v; + std::vector v; v += 1,2,3,4,5,6,7,8,9; push_back( v )(10)(11); - map m; + std::map m; insert( m )( "foo", 1 )( "bar", 2 ); }