SDL_shader_tools icon indicating copy to clipboard operation
SDL_shader_tools copied to clipboard

Preprocessor should not change token boundaries (except when using ##)

Open madebr opened this issue 2 years ago • 0 comments

See this example from the gnu cpp manual:

#define foo() bar
foo()baz

This should expand to bar baz.

Current sdl-shader-compiler -P expands it to barbaz.

madebr avatar Sep 28 '23 03:09 madebr