With lots of experimenting, tradcpp (0.4) seems to work way better than gcc, and it's output is actually valid. We'll go with that for now.
12 lines
151 B
C
12 lines
151 B
C
#define a() x
|
|
a()
|
|
a ()
|
|
#define b(p) p
|
|
x/**/b(1)/**/x
|
|
x/**/b (1)/**/x
|
|
x/**/b()/**/x
|
|
#define c(p,q) p/**/q
|
|
x/**/c(1,2)/**/x
|
|
x/**/c(1)/**/x
|
|
x/**/c()/**/x
|