]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/string.cpp
compilation fix for non PCH build
[wxWidgets.git] / src / common / string.cpp
index 764e1ff3b89a2535ffa28f671eeb901e9eb92fb6..c95d6729e8859d4726c3c18b1ad84ed9c600c91b 100644 (file)
@@ -1842,8 +1842,8 @@ int wxString::PrintfV(const wxChar* pszFormat, va_list argptr)
         // also, it may return an errno may be something like EILSEQ,
         // in which case we need to break out
         if ( (len >= 0 && len <= size)
-        // No EOVERFLOW on Windows nor Palm 6.0
-#if !defined(__WXMSW__) && !defined(__WXPALMOS__)
+        // No EOVERFLOW on Windows nor Palm 6.0 nor OpenVMS
+#if !defined(__WXMSW__) && !defined(__WXPALMOS__) && !defined( __VMS )
             || errno != EOVERFLOW
 #endif
             )