diff options
author | Paolo Carlini <pcarlini@suse.de> | 2007-05-14 16:44:31 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2007-05-14 16:44:31 +0000 |
commit | 2fdff2be24d5930c8681e5ac851c4ffc419abe7d (patch) | |
tree | dffc3e333d1dcbf68f89284b3941daf2e41d8aa5 /libstdc++-v3 | |
parent | 56f78eecdc2e1e682b3135da303dece7e8ec1438 (diff) | |
download | gcc-2fdff2be24d5930c8681e5ac851c4ffc419abe7d.zip gcc-2fdff2be24d5930c8681e5ac851c4ffc419abe7d.tar.gz gcc-2fdff2be24d5930c8681e5ac851c4ffc419abe7d.tar.bz2 |
testsuite_io.h: Only include <ios>.
2007-05-14 Paolo Carlini <pcarlini@suse.de>
* testsuite/util/testsuite_io.h: Only include <ios>.
From-SVN: r124717
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/util/testsuite_io.h | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 0e7c33f..34d8873 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,9 @@ 2007-05-14 Paolo Carlini <pcarlini@suse.de> + * testsuite/util/testsuite_io.h: Only include <ios>. + +2007-05-14 Paolo Carlini <pcarlini@suse.de> + * include/bits/allocator.h: Do not include cpp_type_traits.h. 2007-05-14 Paolo Carlini <pcarlini@suse.de> diff --git a/libstdc++-v3/testsuite/util/testsuite_io.h b/libstdc++-v3/testsuite/util/testsuite_io.h index e6f1c03..2dc3cad 100644 --- a/libstdc++-v3/testsuite/util/testsuite_io.h +++ b/libstdc++-v3/testsuite/util/testsuite_io.h @@ -1,7 +1,7 @@ // -*- C++ -*- // Testing streambuf/filebuf/stringbuf for the C++ library testsuite. // -// Copyright (C) 2003, 2004 Free Software Foundation, Inc. +// Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -31,8 +31,7 @@ #ifndef _GLIBCXX_TESTSUITE_IO_H #define _GLIBCXX_TESTSUITE_IO_H -#include <fstream> -#include <sstream> +#include <ios> namespace __gnu_test { |