]> git.saurik.com Git - wxWidgets.git/commitdiff
use for instead of while for infinite loop (the latter provokes a warning from DEC cc)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 8 Oct 2005 16:54:43 +0000 (16:54 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 8 Oct 2005 16:54:43 +0000 (16:54 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35838 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/http.cpp

index fcab146c82aa4f0d10cc77ad03ed59c72d287ce9..600cef4d47e0f7a0ce3bdfe058560e5c72348b90 100644 (file)
@@ -142,13 +142,7 @@ bool wxHTTP::ParseHeaders()
     ClearHeaders();
     m_read = true;
 
-#if defined(__VISAGECPP__)
-// VA just can't stand while(1)
-    bool bOs2var = true;
-    while(bOs2var)
-#else
-    while (1)
-#endif
+    for ( ;; )
     {
         m_perr = ReadLine(this, line);
         if (m_perr != wxPROTO_NOERR)