diff options
author | Petur Runolfsson <peturr02@ru.is> | 2003-08-19 08:03:09 +0000 |
---|---|---|
committer | Gabriel Dos Reis <gdr@gcc.gnu.org> | 2003-08-19 08:03:09 +0000 |
commit | 1b391ba9421269888ce878deb14f9e416e15a9d9 (patch) | |
tree | ef74e75418367dcfc12c2d494e123774c6984bf8 | |
parent | fc95cf7078f851c3c0f52ea807dc5ff7e9a526aa (diff) | |
download | gcc-1b391ba9421269888ce878deb14f9e416e15a9d9.zip gcc-1b391ba9421269888ce878deb14f9e416e15a9d9.tar.gz gcc-1b391ba9421269888ce878deb14f9e416e15a9d9.tar.bz2 |
ropeimpl.h: #include <ostream> instead of <iostream>
2003-08-18 Petur Runolfsson <peturr02@ru.is>
* include/ext/ropeimpl.h:
#include <ostream> instead of <iostream>
From-SVN: r70562
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/include/ext/ropeimpl.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 32a2589..6bdc6ff 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2003-08-19 Petur Runolfsson <peturr02@ru.is> + + * include/ext/ropeimpl.h: #include <ostream> instead of <iostream> + 2003-08-17 Phil Edwards <pme@gcc.gnu.org> * configure.ac: GCC_NO_EXECUTABLES was supposed to be commented diff --git a/libstdc++-v3/include/ext/ropeimpl.h b/libstdc++-v3/include/ext/ropeimpl.h index 3c8b867..6129084 100644 --- a/libstdc++-v3/include/ext/ropeimpl.h +++ b/libstdc++-v3/include/ext/ropeimpl.h @@ -46,7 +46,7 @@ */ #include <cstdio> -#include <iostream> +#include <ostream> #include <bits/functexcept.h> #include <ext/algorithm> // For copy_n and lexicographical_compare_3way |