diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-09-07 03:01:53 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-09-07 03:01:53 +0000 |
commit | a2c4a7f3c3dad911c72559c8d611222f6f32018b (patch) | |
tree | a7f60d09afc624e970db79ef96c69fd41964205a /libstdc++-v3/testsuite/tr1 | |
parent | 40aed475ae428940429b27bb24cddc1763b79b2b (diff) | |
download | gcc-a2c4a7f3c3dad911c72559c8d611222f6f32018b.tar.gz |
2007-09-06 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/lib/libstdc++.exp: Check CXXFLAGS.
* scripts/testsuite_flags.in: CXXFLAGS_default, matching dejagnu.
* include/std/ostream: Spacing tweak.
* include/ext/hashtable.h: Use <algorithm>.
* include/ext/slist: Same.
* include/ext/rope: Same.
* include/bits/stl_function.h: Format.
* include/tr1_impl/array: Remove section number in doxygen markup.
* src/list.cc: Comment tweak.
* docs/doxygen/user.cfg.in: Update for include/tr1_impl.
* testsuite/25_algorithms/search_n/iterator.cc: Add using declaration.
* testsuite/25_algorithms/nth_element/1.cc: Same.
* testsuite/21_strings/char_traits/requirements/short/1.cc: Use
char_type typedef to the underlying character type.
* testsuite/21_strings/char_traits/requirements/wchar_t/typedefs.cc:
Remove -ansi -pedantic-errors.
* testsuite/21_strings/char_traits/requirements/char/typedefs.cc: Same.
* testsuite/tr1/6_containers/headers/functional/synopsis.cc:
Remove specializations.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@128225 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/testsuite/tr1')
-rw-r--r-- | libstdc++-v3/testsuite/tr1/6_containers/headers/functional/synopsis.cc | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/libstdc++-v3/testsuite/tr1/6_containers/headers/functional/synopsis.cc b/libstdc++-v3/testsuite/tr1/6_containers/headers/functional/synopsis.cc index c4e2e9c3160..fd0b595eb3f 100644 --- a/libstdc++-v3/testsuite/tr1/6_containers/headers/functional/synopsis.cc +++ b/libstdc++-v3/testsuite/tr1/6_containers/headers/functional/synopsis.cc @@ -29,24 +29,5 @@ namespace tr1 { // [6.3.3] Hash function base template template <class T> struct hash; - // Hash function specializations - template <> struct hash<bool>; - template <> struct hash<char>; - template <> struct hash<signed char>; - template <> struct hash<unsigned char>; - template <> struct hash<wchar_t>; - template <> struct hash<short>; - template <> struct hash<unsigned short>; - template <> struct hash<int>; - template <> struct hash<unsigned int>; - template <> struct hash<long>; - template <> struct hash<unsigned long>; - template <> struct hash<float>; - template <> struct hash<double>; - template <> struct hash<long double>; - template<class T> struct hash<T*>; - template <> struct hash<std::string>; - template <> struct hash<std::wstring>; - } // namespace tr1 } // namespace std |