fix multi-line fmacro invocations

This commit is contained in:
pommicket 2022-02-07 16:33:27 -05:00
parent e21c1c39a7
commit 16bad1636d
2 changed files with 71 additions and 1 deletions

View file

@ -1,2 +1,11 @@
#define funciton( h, \
i, j ) h##ello * 2 * i##ello * j##ello
int hello = 7;
int main() {
int x = funciton(
h,
h,
h
);
int y = funciton(h,h,h);
}