Commit 3e9b6cf4 by Paolo Carlini Committed by Paolo Carlini

13858.cc: Qualify exception with std::.

2004-02-16  Paolo Carlini  <pcarlini@suse.de>

	* testsuite/27_io/basic_filebuf/overflow/char/13858.cc:
	Qualify exception with std::.
	* testsuite/27_io/basic_filebuf/overflow/char/9182-2.cc: Ditto.
	* testsuite/27_io/basic_filebuf/overflow/wchar_t/13858.cc: Ditto.
	* testsuite/27_io/basic_filebuf/seekoff/wchar_t/3.cc: Ditto.
	* testsuite/27_io/basic_filebuf/seekpos/wchar_t/1.cc: Ditto.
	* testsuite/27_io/basic_filebuf/sync/char/9182-1.cc: Ditto.

From-SVN: r77913
parent 42a5f3c0
2004-02-16 Paolo Carlini <pcarlini@suse.de>
* testsuite/27_io/basic_filebuf/overflow/char/13858.cc:
Qualify exception with std::.
* testsuite/27_io/basic_filebuf/overflow/char/9182-2.cc: Ditto.
* testsuite/27_io/basic_filebuf/overflow/wchar_t/13858.cc: Ditto.
* testsuite/27_io/basic_filebuf/seekoff/wchar_t/3.cc: Ditto.
* testsuite/27_io/basic_filebuf/seekpos/wchar_t/1.cc: Ditto.
* testsuite/27_io/basic_filebuf/sync/char/9182-1.cc: Ditto.
2004-02-16 Paolo Carlini <pcarlini@suse.de>
* testsuite/ext/enc_filebuf/char/13189.cc: Don't check
for now that the catch block is not reached.
* testsuite/ext/enc_filebuf/wchar_t/13189.cc: Likewise.
......
......@@ -58,7 +58,7 @@ void test01()
fb.pubsync();
fb.close();
}
catch (exception&)
catch (std::exception&)
{
}
}
......
......@@ -67,7 +67,7 @@ void test14()
fbuf1.close();
VERIFY( false );
}
catch (exception&)
catch (std::exception&)
{
}
}
......
......@@ -59,7 +59,7 @@ void test01()
fb.pubsync();
fb.close();
}
catch (exception&)
catch (std::exception&)
{
}
}
......
......@@ -40,7 +40,7 @@ void test03()
fb.pubseekoff(0, ios_base::cur);
VERIFY( false );
}
catch (exception&)
catch (std::exception&)
{
}
}
......
......@@ -40,7 +40,7 @@ void test01()
fb.pubseekpos(pos);
VERIFY( false );
}
catch (exception&)
catch (std::exception&)
{
}
}
......
......@@ -66,7 +66,7 @@ void test13()
fbuf1.pubsync();
VERIFY( false );
}
catch (exception&)
catch (std::exception&)
{
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment