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.
8 lines
135 B
C
8 lines
135 B
C
#define C(x) //**/* x */**//
|
|
C(3)
|
|
C(abc /* def */ ghi)
|
|
|
|
#define D(x) ///**/**/**///**/* x */**///**/**/**///
|
|
D(3)
|
|
D(abc /* def */ ghi)
|