includes: fix gcc-ism
The construction VA_OPT(,) is:
- valid in C++20
- valid as an extension to the GNU C preprocessor (unknown versions)
The construction ##VA_ARGS is:
- valid as an extension to the GNU C preprocessor (since C99)
- valid as an extension to the Clang C preprocessor
- undocumented but valid as an extension to the MSVC C preprocessor
References: