diff options
author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-12 18:45:23 +0000 |
---|---|---|
committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-12 18:45:23 +0000 |
commit | 0ad6ea4124000d262319b550d08d53860b858a84 (patch) | |
tree | 8741bc0b6495a342e224d236d94f7285f61b1dce /libstdc++-v3 | |
parent | f3943982534f64948d4c4de6b2005ec60451c076 (diff) | |
download | gcc-0ad6ea4124000d262319b550d08d53860b858a84.tar.gz |
2009-11-12 Paolo Carlini <paolo.carlini@oracle.com>
* include/bits/stl_algobase.h: Include the full <utility>, per
UK-300.
* include/bits/stl_algo.h: Tweak includes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154126 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/stl_algo.h | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/stl_algobase.h | 3 |
3 files changed, 7 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 2721405a424..9357038cf84 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2009-11-12 Paolo Carlini <paolo.carlini@oracle.com> + + * include/bits/stl_algobase.h: Include the full <utility>, per + UK-300. + * include/bits/stl_algo.h: Tweak includes. + 2009-11-11 Jason Merrill <jason@redhat.com> * testsuite/Makefile.am: Remove use of baseline_file. diff --git a/libstdc++-v3/include/bits/stl_algo.h b/libstdc++-v3/include/bits/stl_algo.h index 9b6f2afb9ec..088414d097f 100644 --- a/libstdc++-v3/include/bits/stl_algo.h +++ b/libstdc++-v3/include/bits/stl_algo.h @@ -61,8 +61,6 @@ #include <bits/algorithmfwd.h> #include <bits/stl_heap.h> #include <bits/stl_tempbuf.h> // for _Temporary_buffer -#include <debug/debug.h> -#include <initializer_list> // See concept_check.h for the __glibcxx_*_requires macros. diff --git a/libstdc++-v3/include/bits/stl_algobase.h b/libstdc++-v3/include/bits/stl_algobase.h index f9c3ab2b428..5feeebebc2d 100644 --- a/libstdc++-v3/include/bits/stl_algobase.h +++ b/libstdc++-v3/include/bits/stl_algobase.h @@ -63,13 +63,12 @@ #include <bits/cpp_type_traits.h> #include <ext/type_traits.h> #include <ext/numeric_traits.h> -#include <bits/stl_pair.h> #include <bits/stl_iterator_base_types.h> #include <bits/stl_iterator_base_funcs.h> #include <bits/stl_iterator.h> #include <bits/concept_check.h> #include <debug/debug.h> -#include <bits/move.h> // For std::swap and _GLIBCXX_MOVE +#include <utility> // UK-300. _GLIBCXX_BEGIN_NAMESPACE(std) |