]> git.sur5r.net Git - cc65/commitdiff
Moved workaround for MinGW's missing %m support to a central place.
authorOliver Schmidt <ol.sc@web.de>
Tue, 4 Mar 2014 00:20:38 +0000 (01:20 +0100)
committerOliver Schmidt <ol.sc@web.de>
Tue, 4 Mar 2014 00:20:38 +0000 (01:20 +0100)
src/ca65/error.h
src/common/xsprintf.h

index 77605367897250e1caa87041c7755246ff6a4d9d..c6fb4f44e5d367f1dccdcb5ea164ef8f5047bf5e 100644 (file)
 
 
 
+#if defined( __MINGW32__)
+#  pragma GCC diagnostic ignored "-Wformat"
+#endif
+
+
+
 /* common */
 #include "attrib.h"
 #include "coll.h"
index 7408177a51b1d3388c28b1d7976ec5311a8e118f..c6ceb723cddcb829376d35e89736c424b83f6f7e 100644 (file)
  * and precision to such a StrBuf, but *not* using %p would bring up a warning
  * about a wrong argument type each time. Maybe gcc will one day allow custom
  * format specifiers and we can change this ...
- * However this cheat doesn't work with MinGW as there's no support for %m :-(
  */
-#if defined( __MINGW32__)
-#  pragma GCC diagnostic ignored "-Wformat"
-#endif