]> git.saurik.com Git - wxWidgets.git/commitdiff
Modify wxString::operator<<(wxLongLong_t) to avoid warnings from mingw
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Mon, 31 Oct 2005 20:27:17 +0000 (20:27 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Mon, 31 Oct 2005 20:27:17 +0000 (20:27 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36048 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

configure.in
include/wx/string.h

index 6450784b71dcac03c238d29c3728d70f322ce068..453cd144e36e414698d4b4caf83f37a6e51376e7 100644 (file)
@@ -6978,15 +6978,6 @@ if test "x$INTELCXX" = "xyes" ; then
 elif test "$GXX" = yes ; then
     dnl CXXWARNINGS="-Wall -W -Wcast-qual -Werror"
     CXXWARNINGS="-Wall -Wundef -Wno-ctor-dtor-privacy" 
-
-    dnl -Wno-format is a terrifically useful warning, however mingw warns
-    dnl whenever the I64 format specifier is used for long long.
-    dnl FIXME: it we detected when cygwin is using -mno-cygwin we could avoid
-    dnl disabling it for cygwin.
-    case "${host}" in
-        *-*-cygwin* | *-*-mingw32* )
-            CXXWARNINGS="$CXXWARNINGS -Wno-format"
-    esac
 fi
 
 EXTRA_CFLAGS="$WXDEBUG $WXODBCFLAG $PROFILE $OPTIMISE"
index 844cfa9f81f63e00095c258870b27585f5623ac0..4cd3a70575c28813eb4084011c523c1d17095cde 100644 (file)
@@ -958,10 +958,16 @@ public:
 #if defined wxLongLong_t && !defined wxLongLongIsLong
       // insert a long long if they exist and aren't longs
   wxString& operator<<(wxLongLong_t ll)
-    { return (*this) << Format(_T("%") wxLongLongFmtSpec _T("d"), ll); }
+    {
+      const wxChar *fmt = _T("%") wxLongLongFmtSpec _T("d");
+      return (*this) << Format(fmt, ll);
+    }
       // insert an unsigned long long
   wxString& operator<<(wxULongLong_t ull)
-    { return (*this) << Format(_T("%") wxLongLongFmtSpec _T("u"), ull); }
+    {
+      const wxChar *fmt = _T("%") wxLongLongFmtSpec _T("u");
+      return (*this) << Format(fmt , ull);
+    }
 #endif
       // insert a float into string
   wxString& operator<<(float f)