]> git.saurik.com Git - wxWidgets.git/commitdiff
initialize a local variable even if it doesn't really need to be initialized to suppr...
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 6 Aug 2008 22:34:40 +0000 (22:34 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 6 Aug 2008 22:34:40 +0000 (22:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54998 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/stringops.cpp

index ae182c6cfa09f4079c3c8092baf20d80afdd0cc2..b4959f846cd7f35315d955b706b384641f7c1bc8 100644 (file)
@@ -194,7 +194,7 @@ bool wxStringOperationsUtf8::IsValidUtf8LeadByte(unsigned char c)
 //     code in single place
 wxUniChar::Utf8CharBuffer wxUniChar::AsUTF8() const
 {
-    Utf8CharBuffer buf;
+    Utf8CharBuffer buf = { "" }; // init to avoid g++ 4.1 warning with -O2
     char *out = buf.data;
 
     value_type code = GetValue();