]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/defs.h
Header listed twice removed.
[wxWidgets.git] / include / wx / defs.h
index 9739fbf2606d3c6c258ad99870c61c31a5810e35..f8cda81a809de1ad2c63eaf5bcd725b9808a1ae6 100644 (file)
@@ -597,6 +597,13 @@ typedef int wxWindowID;
     #define WXUNUSED_IN_WINCE(param)  param
 #endif
 
+/*  unused parameters in non stream builds */
+#if wxUSE_STREAMS
+    #define WXUNUSED_UNLESS_STREAMS(param)  param
+#else
+    #define WXUNUSED_UNLESS_STREAMS(param)  WXUNUSED(param)
+#endif
+
 /*  some compilers give warning about a possibly unused variable if it is */
 /*  initialized in both branches of if/else and shut up if it is initialized */
 /*  when declared, but other compilers then give warnings about unused variable */