C++ namespace with exception

is there any in C++ to use namespace with one, two, or three name exceptions ?
The presence of a using statement
using namespace std;
Doesn't prevent the programmer from fully qualifying a name.
distance(begin, end); /* or */ std::distance(begin, end);
Topic archived. No new replies allowed.