]> git.saurik.com Git - wxWidgets.git/commitdiff
GCC can't test prototype if using wchar_t instead of char.
authorMattia Barbon <mbarbon@cpan.org>
Sat, 6 Jul 2002 12:49:41 +0000 (12:49 +0000)
committerMattia Barbon <mbarbon@cpan.org>
Sat, 6 Jul 2002 12:49:41 +0000 (12:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16062 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/defs.h

index 80896a98d8d70ca93cd633054c89a6e725062ec5..537a7f5ad9a299477669d473ee97b596f76b3879 100644 (file)
@@ -428,7 +428,7 @@ typedef void (*wxFunction) (wxObject&, wxEvent&);
 #endif
 
 // Printf-like attribute definitions to obtain warnings with GNU C/C++
-#if defined(__GNUC__)
+#if defined(__GNUC__) && !wxUSE_UNICODE
 #  ifndef ATTRIBUTE_PRINTF
 #    define ATTRIBUTE_PRINTF(m, n) __attribute__ ((__format__ (__printf__, m, n)))
 #    define ATTRIBUTE_PRINTF_1 ATTRIBUTE_PRINTF(1, 2)