Possible Duplicate:
Unnamed/anonymous namespaces vs. static functions
I came across this code
namespace ABC {
namespace DEF {
namespace
{
I expected the namespace should be followed by some name, but it's not the case with this code.
Is this allowed in C++? What's the advantage for this unnamed namespace?