diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2005-03-03 17:45:44 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2005-03-03 17:45:44 +0000 |
commit | 2e8f8105a65e43afae30fda99f22ea149351379c (patch) | |
tree | df7d4f246bf38eedf8044aaf188f0958985165c0 /libstdc++-v3 | |
parent | 4b58fc4d28479fe8a917fb4a0c3a7c7146b7dea1 (diff) | |
download | gcc-2e8f8105a65e43afae30fda99f22ea149351379c.zip gcc-2e8f8105a65e43afae30fda99f22ea149351379c.tar.gz gcc-2e8f8105a65e43afae30fda99f22ea149351379c.tar.bz2 |
functional: Convert relative path.
2005-03-03 Benjamin Kosnik <bkoz@redhat.com>
* include/tr1/functional: Convert relative path.
* docs/doxygen/user.cfg.in: Add tr1 includes.
From-SVN: r95838
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/docs/doxygen/user.cfg.in | 10 | ||||
-rw-r--r-- | libstdc++-v3/include/tr1/functional | 2 |
3 files changed, 16 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 22a7ed4..8acc327 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2005-03-03 Benjamin Kosnik <bkoz@redhat.com> + + * include/tr1/functional: Convert relative path. + + * docs/doxygen/user.cfg.in: Add tr1 includes. + 2005-03-03 Paolo Carlini <pcarlini@suse.de> * include/tr1/type_traits: Implemenet is_polymorphic. diff --git a/libstdc++-v3/docs/doxygen/user.cfg.in b/libstdc++-v3/docs/doxygen/user.cfg.in index 4e149d7..dc4595b 100644 --- a/libstdc++-v3/docs/doxygen/user.cfg.in +++ b/libstdc++-v3/docs/doxygen/user.cfg.in @@ -73,6 +73,7 @@ INPUT = @srcdir@/docs/doxygen/doxygroups.cc \ include/@host_alias@/bits \ include/bits \ include/ext \ + include/tr1 \ @srcdir@/libsupc++/exception \ @srcdir@/libsupc++/new \ @srcdir@/libsupc++/typeinfo \ @@ -113,7 +114,14 @@ INPUT = @srcdir@/docs/doxygen/doxygroups.cc \ include/ext/rope \ include/ext/slist \ include/tr1/array \ - include/tr1/tuple + include/tr1/functional \ + include/tr1/hashtable \ + include/tr1/memory \ + include/tr1/tuple \ + include/tr1/type_traits \ + include/tr1/unordered_map \ + include/tr1/unordered_set \ + include/tr1/utility FILE_PATTERNS = *.h \ *.tcc RECURSIVE = NO diff --git a/libstdc++-v3/include/tr1/functional b/libstdc++-v3/include/tr1/functional index 30a7987..778b9d7 100644 --- a/libstdc++-v3/include/tr1/functional +++ b/libstdc++-v3/include/tr1/functional @@ -37,7 +37,7 @@ #include "../functional" #include <typeinfo> #include <tr1/type_traits> -#include "../bits/cpp_type_traits.h" +#include <bits/cpp_type_traits.h> #include <string> // for std::tr1::hash #include <cstdlib> // for std::abort |