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
This commit is contained in:
Paolo Carlini 2004-02-16 19:28:06 +00:00 committed by Paolo Carlini
parent 42a5f3c0a4
commit 3e9b6cf4e0
7 changed files with 16 additions and 6 deletions

View File

@ -1,3 +1,13 @@
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

View File

@ -58,7 +58,7 @@ void test01()
fb.pubsync();
fb.close();
}
catch (exception&)
catch (std::exception&)
{
}
}

View File

@ -67,7 +67,7 @@ void test14()
fbuf1.close();
VERIFY( false );
}
catch (exception&)
catch (std::exception&)
{
}
}

View File

@ -59,7 +59,7 @@ void test01()
fb.pubsync();
fb.close();
}
catch (exception&)
catch (std::exception&)
{
}
}

View File

@ -40,7 +40,7 @@ void test03()
fb.pubseekoff(0, ios_base::cur);
VERIFY( false );
}
catch (exception&)
catch (std::exception&)
{
}
}

View File

@ -40,7 +40,7 @@ void test01()
fb.pubseekpos(pos);
VERIFY( false );
}
catch (exception&)
catch (std::exception&)
{
}
}

View File

@ -66,7 +66,7 @@ void test13()
fbuf1.pubsync();
VERIFY( false );
}
catch (exception&)
catch (std::exception&)
{
}
}