]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/log.h
build fixes for wxUSE_IPV6==1 under Windows
[wxWidgets.git] / include / wx / log.h
index 01d37ca61d04a4da56d2aa0aabf88058f2754247..83ea99678ea20d4901ee6c071f8f1088ea55c011 100644 (file)
@@ -751,7 +751,14 @@ DECLARE_LOG_FUNCTION2(SysError, unsigned long, lErrCode);
     // empty functions if their parameters are complicated enough, but by
     // defining them as an empty inline function we ensure that even dumbest
     // compilers optimise them away
+#ifdef __BORLANDC__
+    // but Borland gives "W8019: Code has no effect" for wxLogNop() so we need
+    // to define it differently for it to avoid these warnings (same problem as
+    // with wxUnusedVar())
+    #define wxLogNop() { }
+#else
     inline void wxLogNop() { }
+#endif
 
     #define wxVLogDebug(fmt, valist) wxLogNop()
     #define wxVLogTrace(mask, fmt, valist) wxLogNop()