The section $7.3.1.1/2 from the C++ Standard reads,
The use of the static keyword is deprecated when declaring objects in a namespace scope; the unnamed-namespace provides a superior alternative.
I don't understand why unnamed namespace is superior alternative? What is the rationale? I knew it for a long time as to what the Standard says, but never gave a serious thought to the question, even when I was replying to this question : Superiority of unnamed namespace over static ?
Is it considered superior because it can be applied to user-defined types as well, as I described in my answer? Or there is some other story as well which I'm unaware of? I'm asking this, particularly because that is my thought in my answer, while the Standard might have something else in mind.