diff options
author | Paolo Carlini <pcarlini@suse.de> | 2007-02-20 21:22:35 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2007-02-20 21:22:35 +0000 |
commit | 41e56bf7d66af98e2db00489deffb3e6178dd5b2 (patch) | |
tree | 8fcda809ebe9bfdcbac27d41929abfed4fe56d3b /libstdc++-v3/include/tr1/random | |
parent | f05e2819afcf3435618010ee2a79576fd77d00d7 (diff) | |
download | gcc-41e56bf7d66af98e2db00489deffb3e6178dd5b2.zip gcc-41e56bf7d66af98e2db00489deffb3e6178dd5b2.tar.gz gcc-41e56bf7d66af98e2db00489deffb3e6178dd5b2.tar.bz2 |
PR libstdc++/28080 (partial)
2007-02-20 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/28080 (partial)
* include/tr1/functional: Split out hash bits to...
* include/tr1/functional_hash.h: ...here.
* include/Makefile.am: Add.
* include/tr1/unordered_set: Include the latter instead.
* include/tr1/unordered_map: Likewise.
* include/tr1/random: Do not include the whole <algorithm>,
stl_algobase.h is enough.
* include/tr1/memory: Likewise.
* include/Makefile.in: Regenerate.
* include/tr1/utility (get(std::pair<>&), get(const std::pair<>&)):
Mark inline.
From-SVN: r122175
Diffstat (limited to 'libstdc++-v3/include/tr1/random')
-rw-r--r-- | libstdc++-v3/include/tr1/random | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/include/tr1/random b/libstdc++-v3/include/tr1/random index 72ec79d..02a7ae7 100644 --- a/libstdc++-v3/include/tr1/random +++ b/libstdc++-v3/include/tr1/random @@ -1,6 +1,6 @@ // random number generation -*- C++ -*- -// Copyright (C) 2006 Free Software Foundation, Inc. +// Copyright (C) 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 @@ -35,7 +35,7 @@ #ifndef _TR1_RANDOM #define _TR1_RANDOM 1 -#include <algorithm> +#include <bits/stl_algobase.h> #include <bits/concept_check.h> #include <cmath> #include <debug/debug.h> |