GabrielDosReis / ipr

Compiler-neutral Internal Program Representation for C++
BSD 3-Clause "New" or "Revised" License
222 stars 23 forks source link

Add translation directives to IPR #193

Closed GabrielDosReis closed 2 years ago

GabrielDosReis commented 2 years ago

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

GabrielDosReis commented 2 years ago

Fixes #107