What is the relationship of a static function declared in a non-global namespace?
Example:
namespace foo { ... static void bar(int a) { } }
Is this something other than a static method declared in the global namespace? Can someone point me to the place in the standard where this is laid out?
Thanks!
user220878
source share