namespace {…} without any namespace name

What actually is meant by namespace {…} without any namespace name which is sometimes seen in C++?
Unnamed namespace: https://en.cppreference.com/w/cpp/language/namespace#Unnamed_namespaces

Entities within an unnamed namespace have internal linkage;
they can only be accessed from within the same translation unit.
Topic archived. No new replies allowed.