Author: faridz
Date: Sat Feb  9 05:25:00 2008
New Revision: 620105

URL: http://svn.apache.org/viewvc?rev=620105&view=rev
Log:
2008-02-09  Farid Zaripov  <[EMAIL PROTECTED]>

        STDCXX-720
        * tests/regress/21.string.io.stdcxx-250.cpp: Give name to
        the unnamed struct to workaround bug of the ICC/Windows.
        * tests/regress/27.filebuf.virtuals.stdcxx-522.cpp: Ditto.

Modified:
    stdcxx/branches/4.2.x/tests/regress/21.string.io.stdcxx-250.cpp
    stdcxx/branches/4.2.x/tests/regress/27.filebuf.virtuals.stdcxx-522.cpp

Modified: stdcxx/branches/4.2.x/tests/regress/21.string.io.stdcxx-250.cpp
URL: 
http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/tests/regress/21.string.io.stdcxx-250.cpp?rev=620105&r1=620104&r2=620105&view=diff
==============================================================================
--- stdcxx/branches/4.2.x/tests/regress/21.string.io.stdcxx-250.cpp (original)
+++ stdcxx/branches/4.2.x/tests/regress/21.string.io.stdcxx-250.cpp Sat Feb  9 
05:25:00 2008
@@ -32,7 +32,7 @@
 
 int main ()
 {
-    struct: std::streambuf {
+    struct MyBuf : std::streambuf {
         int_type underflow () {
             static int i = 0;
             // i == 0: sgect() invoked from sentry ctor

Modified: stdcxx/branches/4.2.x/tests/regress/27.filebuf.virtuals.stdcxx-522.cpp
URL: 
http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/tests/regress/27.filebuf.virtuals.stdcxx-522.cpp?rev=620105&r1=620104&r2=620105&view=diff
==============================================================================
--- stdcxx/branches/4.2.x/tests/regress/27.filebuf.virtuals.stdcxx-522.cpp 
(original)
+++ stdcxx/branches/4.2.x/tests/regress/27.filebuf.virtuals.stdcxx-522.cpp Sat 
Feb  9 05:25:00 2008
@@ -32,7 +32,7 @@
 
 int main ()
 {
-    struct: std::filebuf {
+    struct MyBuf : std::filebuf {
         int_type overflow (int_type c) {
             return std::filebuf::overflow (c);
         }


Reply via email to