danmar/simplecpp

Debracket macro not expanded

Closed this issue · 1 comments

Example code:

#define A(val) DEBRACKET val
#define DEBRACKET(val) val

A((2))

gcc -E output:

2

simplecpp output:

DEBRACKET ( 2 )

I don't know.. this might be related to #394