You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make generated file use valid C++ identifiers (#31)
* Make generated file use valid C++ identifiers
* according to https://en.cppreference.com/w/cpp/language/identifiers
* identifiers with a double underscore anywhere;
* identifiers that begin with an underscore followed by an uppercase letter;
* in the global namespace, identifiers that begin with an underscore.
* clang w/ `-Weverything` is including `-Wreserved-id-macro`, which
fails with the current macro naming scheme.
* cleaned up tests a bit
* check `comments` early
* Pin clang==14.0.6
* Apply suggestion from @henryiii
---------
Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
0 commit comments