aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Spencer <spencer@infointeractive.com>2003-09-26 20:20:55 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2003-09-26 20:20:55 +0000
commit2d07c3f562e68955ed7067f7145a1ca416a8dafd (patch)
tree47547608acf13c225bff810648f49b278589a0da
parent6634a0e914af681099d147755f90ed4011a35809 (diff)
downloadgcc-2d07c3f562e68955ed7067f7145a1ca416a8dafd.zip
gcc-2d07c3f562e68955ed7067f7145a1ca416a8dafd.tar.gz
gcc-2d07c3f562e68955ed7067f7145a1ca416a8dafd.tar.bz2
10132-1.cc: Explicitly qualify exceptions.
2003-09-26 Brad Spencer <spencer@infointeractive.com> * testsuite/27_io/basic_filebuf/cons/wchar_t/10132-1.cc: Explicitly qualify exceptions. * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc: Same. * testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc: Same. * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same. * testsuite/27_io/basic_ostream/sentry/char/3983-sstream.cc: Same. From-SVN: r71832
-rw-r--r--libstdc++-v3/ChangeLog9
-rw-r--r--libstdc++-v3/testsuite/27_io/basic_filebuf/cons/wchar_t/10132-1.cc9
-rw-r--r--libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc24
-rw-r--r--libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc23
-rw-r--r--libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc11
-rw-r--r--libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-sstream.cc11
6 files changed, 43 insertions, 44 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 7729b7b..38a115d 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,12 @@
+2003-09-26 Brad Spencer <spencer@infointeractive.com>
+
+ * testsuite/27_io/basic_filebuf/cons/wchar_t/10132-1.cc:
+ Explicitly qualify exceptions.
+ * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc: Same.
+ * testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc: Same.
+ * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same.
+ * testsuite/27_io/basic_ostream/sentry/char/3983-sstream.cc: Same.
+
2003-09-25 Paolo Carlini <pcarlini@unitus.it>
PR libstdc++/12352
diff --git a/libstdc++-v3/testsuite/27_io/basic_filebuf/cons/wchar_t/10132-1.cc b/libstdc++-v3/testsuite/27_io/basic_filebuf/cons/wchar_t/10132-1.cc
index 04f4b44..503073e 100644
--- a/libstdc++-v3/testsuite/27_io/basic_filebuf/cons/wchar_t/10132-1.cc
+++ b/libstdc++-v3/testsuite/27_io/basic_filebuf/cons/wchar_t/10132-1.cc
@@ -33,20 +33,19 @@ protected:
int main()
{
- using namespace std;
bool test __attribute__((unused)) = true;
- locale loc = locale(locale::classic(), new Cvt);
- wfilebuf* fb = new wfilebuf;
+ std::locale loc = std::locale(std::locale::classic(), new Cvt);
+ std::wfilebuf* fb = new std::wfilebuf;
fb->pubimbue(loc);
- fb->open("tmp_10132", ios_base::out);
+ fb->open("tmp_10132", std::ios_base::out);
fb->sputc(L'a');
try
{
delete fb;
}
- catch(exception& obj)
+ catch(std::exception& obj)
{
VERIFY( false );
}
diff --git a/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc b/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc
index e9e302b..d285bc1 100644
--- a/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc
+++ b/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc
@@ -124,49 +124,47 @@ namespace std
// Sentry uses locale info, so have to try one formatted input/output.
void test03()
{
- using namespace std;
bool test __attribute__((unused)) = true;
// input streams
- basic_ifstream<unsigned char> ifs_uc;
+ std::basic_ifstream<unsigned char> ifs_uc;
unsigned char arr[6] = { 'a', 'b', 'c', 'd', 'e' };
-
try
{
int i;
ifs_uc >> i;
}
- catch (bad_cast& obj)
+ catch (std::bad_cast& obj)
{ }
- catch (exception& obj)
+ catch (std::exception& obj)
{ test = false; }
try
{
ifs_uc >> arr;
}
- catch (bad_cast& obj)
+ catch (std::bad_cast& obj)
{ }
- catch (exception& obj)
+ catch (std::exception& obj)
{ test = false; }
try
{
- ifs_uc >> ws;
+ ifs_uc >> std::ws;
}
- catch (bad_cast& obj)
+ catch (std::bad_cast& obj)
{ }
- catch (exception& obj)
+ catch (std::exception& obj)
{ test = false; }
try
{
- basic_string<unsigned char> s_uc(arr);
+ std::basic_string<unsigned char> s_uc(arr);
ifs_uc >> s_uc;
}
- catch (bad_cast& obj)
+ catch (std::bad_cast& obj)
{ }
- catch (exception& obj)
+ catch (std::exception& obj)
{ test = false; }
VERIFY( test );
diff --git a/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc b/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc
index 77bf598..0ae9c80 100644
--- a/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc
+++ b/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc
@@ -124,11 +124,10 @@ namespace std
// Sentry uses locale info, so have to try one formatted input/output.
void test03()
{
- using namespace std;
bool test __attribute__((unused)) = true;
// input streams
- basic_istringstream<unsigned char> iss_uc;
+ std::basic_istringstream<unsigned char> iss_uc;
unsigned char arr[6] = { 'a', 'b', 'c', 'd', 'e' };
try
@@ -136,37 +135,37 @@ void test03()
int i;
iss_uc >> i;
}
- catch (bad_cast& obj)
+ catch (std::bad_cast& obj)
{ }
- catch (exception& obj)
+ catch (std::exception& obj)
{ test = false; }
try
{
iss_uc >> arr;
}
- catch (bad_cast& obj)
+ catch (std::bad_cast& obj)
{ }
- catch (exception& obj)
+ catch (std::exception& obj)
{ test = false; }
try
{
- iss_uc >> ws;
+ iss_uc >> std::ws;
}
- catch (bad_cast& obj)
+ catch (std::bad_cast& obj)
{ }
- catch (exception& obj)
+ catch (std::exception& obj)
{ test = false; }
try
{
- basic_string<unsigned char> s_uc(arr);
+ std::basic_string<unsigned char> s_uc(arr);
iss_uc >> s_uc;
}
- catch (bad_cast& obj)
+ catch (std::bad_cast& obj)
{ }
- catch (exception& obj)
+ catch (std::exception& obj)
{ test = false; }
VERIFY( test );
diff --git a/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc b/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc
index e3af42e3..c37c004 100644
--- a/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc
+++ b/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc
@@ -124,22 +124,19 @@ namespace std
// Sentry uses locale info, so have to try one formatted input/output.
void test03()
{
- using namespace std;
bool test __attribute__((unused)) = true;
// output streams
- basic_ofstream<unsigned char> ofs_uc;
-
+ std::basic_ofstream<unsigned char> ofs_uc;
try
{
bool b = true;
ofs_uc << b;
}
- catch (bad_cast& obj)
+ catch (std::bad_cast& obj)
{ }
- catch (exception& obj)
- { test = false; }
-
+ catch (std::exception& obj)
+ { test = false; }
VERIFY( test );
}
diff --git a/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-sstream.cc b/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-sstream.cc
index fe1a947..5ace232 100644
--- a/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-sstream.cc
+++ b/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-sstream.cc
@@ -124,22 +124,19 @@ namespace std
// Sentry uses locale info, so have to try one formatted input/output.
void test03()
{
- using namespace std;
bool test __attribute__((unused)) = true;
// output streams
- basic_ostringstream<unsigned char> oss_uc;
-
+ std::basic_ostringstream<unsigned char> oss_uc;
try
{
bool b = true;
oss_uc << b;
}
- catch (bad_cast& obj)
+ catch (std::bad_cast& obj)
{ }
- catch (exception& obj)
- { test = false; }
-
+ catch (std::exception& obj)
+ { test = false; }
VERIFY( test );
}