|
|
|
|
|
by billconan
1921 days ago
|
|
does this tool support preprocessor? in my project, I use the catch2 framework, the unit tests look like TEST_CASE("....") { } this macro will be treated as invalid syntax by many c++ parsers, including doxygen's I think. I notice that hdoc is based on clang. I tried using clang to dump syntax tree of the above code snippet, the result was incomprehensible, because the macro has been expanded by the preprocessor. |
|