Author: faridz
Date: Sat Feb  9 05:27:36 2008
New Revision: 620107

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

        Merged r620105 from branches/4.2.x with a fix for 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/trunk/tests/regress/21.string.io.stdcxx-250.cpp
    stdcxx/trunk/tests/regress/27.filebuf.virtuals.stdcxx-522.cpp

Modified: stdcxx/trunk/tests/regress/21.string.io.stdcxx-250.cpp
URL: 
http://svn.apache.org/viewvc/stdcxx/trunk/tests/regress/21.string.io.stdcxx-250.cpp?rev=620107&r1=620106&r2=620107&view=diff
==============================================================================
--- stdcxx/trunk/tests/regress/21.string.io.stdcxx-250.cpp (original)
+++ stdcxx/trunk/tests/regress/21.string.io.stdcxx-250.cpp Sat Feb  9 05:27:36 
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/trunk/tests/regress/27.filebuf.virtuals.stdcxx-522.cpp
URL: 
http://svn.apache.org/viewvc/stdcxx/trunk/tests/regress/27.filebuf.virtuals.stdcxx-522.cpp?rev=620107&r1=620106&r2=620107&view=diff
==============================================================================
--- stdcxx/trunk/tests/regress/27.filebuf.virtuals.stdcxx-522.cpp (original)
+++ stdcxx/trunk/tests/regress/27.filebuf.virtuals.stdcxx-522.cpp Sat Feb  9 
05:27:36 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