[flac-dev] Please test more libFLAC/cpu.c changes
lvqcl
lvqcl.mail at gmail.com
Thu Jun 30 16:34:18 UTC 2016
Erik de Castro Lopo wrote:
> This code is in flux and in the current state the logic probably
> has inconsistencies that will be fixed in due course.
>
> What I am very much more interested in is if the code in the
> wip/cpu branch currently compiles and passes the test on
> Windows with MSVS.
No, it doesn't:
error C2010: '.' : unexpected in macro formal parameter list
It complains about the line
#define dfprintf(file, format, args...)
The correct syntax for variadic macro in MSVC is:
#define dfprintf(file, format, ...)
After this change, MSVC can compile flac without problems.
More information about the flac-dev
mailing list