Am 25.01.2017 um 23:01 schrieb Jeff King:
+#pragma GCC diagnostic ignored "-Wformat-zero-length"
Last time I used #pragma GCC in a cross-platform project, it triggered an "unknown pragma" warning for MSVC. (It was the C++ compiler, I don't know if the C compiler would also warn.) It would have to be spelled like this:
#pragma warning(disable: 4068) /* MSVC: unknown pragma */ #pragma GCC diagnostic ignored "-Wformat-zero-length" Dscho mentioned that he's compiling with MSVC. It would do him a favor. -- Hannes