]> git.saurik.com Git - wxWidgets.git/commitdiff
added braces to suppress g++ 4.3 warnings
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 11 Sep 2008 14:00:33 +0000 (14:00 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 11 Sep 2008 14:00:33 +0000 (14:00 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55553 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

tests/archive/archivetest.cpp
tests/regex/regextest.cpp

index dc5caa473eb9ecce2d1a941336cc73fc453004c1..0885346bfea28a4104c68113b949dbfdd1310685 100644 (file)
@@ -269,10 +269,12 @@ size_t TestInputStream::OnSysRead(void *buffer, size_t size)
     }
 
     if (((m_eoftype & AtLast) != 0 && m_pos >= m_size) || count < size)
+    {
         if ((m_eoftype & WithError) != 0)
             m_lasterror = wxSTREAM_READ_ERROR;
         else
             m_lasterror = wxSTREAM_EOF;
+    }
 
     return count;
 }
index bd0895085990dcc2118f9e01b16d3997eb4a6b89..042741ed3e5207722ef51d211f50156326820941 100644 (file)
@@ -272,19 +272,23 @@ void RegExTestCase::doTest(int flavor)
 
         // m - check the match returns the strings given
         if (m_mode == 'm')
+        {
             if (start < INT_MAX)
                 result = m_data.substr(start, len);
             else
                 result = _T("");
+        }
 
         // i - check the match returns the offsets given
         else if (m_mode == 'i')
+        {
             if (start > INT_MAX)
                 result = _T("-1 -1");
             else if (start + len > 0)
                 result << start << _T(" ") << start + len - 1;
             else
                 result << start << _T(" -1");
+        }
 
         msg.clear();
         msg << _T("match(") << i << _T(") == ") << quote(result)