]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/log.cpp
first attempt for full screen implementation
[wxWidgets.git] / src / common / log.cpp
index f4250830b41f36e539058f1e4353319587f7164e..d9a6c7eb30d9023fdf79c2f813b31d1c12552df3 100644 (file)
@@ -199,7 +199,10 @@ void wxLogFatalError(const wxChar *szFormat, ...)
     va_list argptr;
     va_start(argptr, szFormat);
     wxVLogFatalError(szFormat, argptr);
-    va_end(argptr);
+
+    // some compilers warn about unreachable code and it shouldn't matter
+    // for the others anyhow...
+    //va_end(argptr);
 }
 
 // same as info, but only if 'verbose' mode is on