Compiler Warning (level 4) C4515

'namespace' : namespace uses itself

You created a namespace that uses itself, as the following example shows:

namespace A {
   using namespace A; // warning C4515
}