-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Often we want to use macros to simplify writing boilerplate. On one hand this is good as it avoid tedious, error-prone work. OTOH it makes reading and debugging code harder when trying to simply traverse complex code bases either with code indexers/taggers or even just in debuggers that get often confused when the source code file does not match the compiled code. This simple generator allows to write macros to auto generate parts of code and uses the compiler pre-processor to spit out actual readable code that can be formatted by clang-format and committed to the tree. Signed-off-by: Simo Sorce <[email protected]>
- Loading branch information
Showing
3 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters