Tal500
Results
42
issues of
Tal500
An edge case, that we have in our code base to avoid grepping. The following code: ```cpp #define A\ B 0 AB ``` `gcc -E` output: ```cpp 0 ``` simplecpp...
bug
The following code isn't transformed well by simplecpp: ```cpp #define FOOBAR(x) x #define MACRO_COMPOSE(A, B) A ## B MACRO_COMPOSE(FOO, BAR(1)) ``` `gcc -E` output: ```cpp 1 ``` simplecpp output: ```cpp...