Certain Standard C++ constructs are described as declarations by the ISO spec, but they - in fact - do not declare any names. They act more like directives (e.g. changing the compiler behavior) than introducing a name with a type (possibly with initializer) in a given scope.
Certain Standard C++ constructs are described as declarations by the ISO spec, but they - in fact - do not declare any names. They act more like directives (e.g. changing the compiler behavior) than introducing a name with a type (possibly with initializer) in a given scope.
Fixes #6 Fixes #17