A recent thread on SO has caused this.
Anonymous namespace is considered equivalent
namespace unique { } using namespace unique; namespace unique { namespace-body }
I do not remember the exact reason why it is not equivalent
namespace unique { namespace-body } using namespace unique;
Also tried to do a search (including Google), but in vain. Please share any information you have in this regard.
source share