Files
wren/src
Kyle Marek-Spartz d2cbb7a04b fix: remove trailing semicolon from DECLARE_BUFFER macro template
The DECLARE_BUFFER macro in src/wren_utils.h had an extraneous semicolon at the end of the wren##name##BufferWrite function declaration. This caused a double-semicolon issue when the macro was expanded in source files, as the macro invocation sites already added their own semicolons. Removing the trailing semicolon from the macro template ensures consistent and correct C syntax across all buffer type declarations.
2015-01-13 02:16:06 +00:00
..