diff options
author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-04 12:10:13 +0000 |
---|---|---|
committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-04 12:10:13 +0000 |
commit | b28c727a1e13feae72be21b9d3ae3e2aee8e11c9 (patch) | |
tree | 1999215064ffeb9a8939eecd44b3df6f30154644 /libstdc++-v3/include/ext/rope | |
parent | 35107d49a96ab4169295e147c348eac5c354e9a4 (diff) | |
download | gcc-b28c727a1e13feae72be21b9d3ae3e2aee8e11c9.tar.gz |
2003-07-04 Paolo Carlini <pcarlini@unitus.it>
* include/bits/stl_list.h: Fully qualify standard
functions with std::, thus avoiding Koenig lookup.
* include/bits/stl_queue.h: Likewise.
* include/bits/stl_raw_storage_iter.h: Likewise.
* include/bits/stl_tempbuf.h: Likewise.
* include/bits/stl_tree.h: Likewise.
* include/bits/stl_uninitialized.h: Likewise.
* include/bits/stl_vector.h: Likewise.
* include/ext/rope: Change includes order.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68919 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/ext/rope')
-rw-r--r-- | libstdc++-v3/include/ext/rope | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libstdc++-v3/include/ext/rope b/libstdc++-v3/include/ext/rope index 9ba261845b3..9cb0d68b3ef 100644 --- a/libstdc++-v3/include/ext/rope +++ b/libstdc++-v3/include/ext/rope @@ -50,15 +50,14 @@ #define _ROPE 1 #include <bits/stl_algobase.h> +#include <bits/stl_construct.h> +#include <bits/stl_uninitialized.h> #include <bits/stl_algo.h> #include <bits/stl_function.h> #include <bits/stl_numeric.h> #include <bits/allocator.h> -#include <bits/stl_construct.h> -#include <bits/stl_uninitialized.h> #include <ext/hash_fun.h> - # ifdef __GC # define __GC_CONST const # else |