diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2009-11-17 20:38:33 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2009-11-17 20:38:33 +0000 |
commit | 1ceb9e066c31914dc6ef69c0cf2b25366d863d96 (patch) | |
tree | 23e5e81465acd13cd2a2635509863fd3501a3683 | |
parent | 97471c71bfe5d692043166106599eca3374b0370 (diff) | |
download | gcc-1ceb9e066c31914dc6ef69c0cf2b25366d863d96.zip gcc-1ceb9e066c31914dc6ef69c0cf2b25366d863d96.tar.gz gcc-1ceb9e066c31914dc6ef69c0cf2b25366d863d96.tar.bz2 |
bitset: Add doxygen markup.
2009-11-17 Benjamin Kosnik <bkoz@redhat.com>
* include/debug/bitset: Add doxygen markup.
* include/debug/deque: Same.
* include/debug/list: Same.
* include/debug/map.h: Same.
* include/debug/multimap.h: Same.
* include/debug/set.h: Same.
* include/debug/multiset.h: Same.
* include/debug/unordered_map: Same.
* include/debug/unordered_set: Same.
* include/debug/string: Same.
* include/debug/vector: Same.
From-SVN: r154268
-rw-r--r-- | libstdc++-v3/ChangeLog | 14 | ||||
-rw-r--r-- | libstdc++-v3/include/debug/bitset | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/debug/deque | 1 | ||||
-rw-r--r-- | libstdc++-v3/include/debug/list | 1 | ||||
-rw-r--r-- | libstdc++-v3/include/debug/map.h | 1 | ||||
-rw-r--r-- | libstdc++-v3/include/debug/multimap.h | 1 | ||||
-rw-r--r-- | libstdc++-v3/include/debug/multiset.h | 1 | ||||
-rw-r--r-- | libstdc++-v3/include/debug/set.h | 1 | ||||
-rw-r--r-- | libstdc++-v3/include/debug/string | 1 | ||||
-rw-r--r-- | libstdc++-v3/include/debug/unordered_map | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/debug/unordered_set | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/debug/vector | 1 |
12 files changed, 28 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 2c93286..35d75b3 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,17 @@ +2009-11-17 Benjamin Kosnik <bkoz@redhat.com> + + * include/debug/bitset: Add doxygen markup. + * include/debug/deque: Same. + * include/debug/list: Same. + * include/debug/map.h: Same. + * include/debug/multimap.h: Same. + * include/debug/set.h: Same. + * include/debug/multiset.h: Same. + * include/debug/unordered_map: Same. + * include/debug/unordered_set: Same. + * include/debug/string: Same. + * include/debug/vector: Same. + 2009-11-15 Steve Ward <planet36@gmail.com> * libsupc++/cxxabi.h (__cxa_demangle): Fix typo in comment. diff --git a/libstdc++-v3/include/debug/bitset b/libstdc++-v3/include/debug/bitset index b493442..c6203d9 100644 --- a/libstdc++-v3/include/debug/bitset +++ b/libstdc++-v3/include/debug/bitset @@ -38,6 +38,7 @@ namespace std { namespace __debug { + /// Class std::bitset with additional safety/checking/debug instrumentation. template<size_t _Nb> class bitset : public _GLIBCXX_STD_D::bitset<_Nb>, @@ -363,6 +364,7 @@ namespace __debug operator<<(std::basic_ostream<_CharT, _Traits>& __os, const bitset<_Nb>& __x) { return __os << __x._M_base(); } + } // namespace __debug } // namespace std diff --git a/libstdc++-v3/include/debug/deque b/libstdc++-v3/include/debug/deque index 3a39dc4..d6078f5 100644 --- a/libstdc++-v3/include/debug/deque +++ b/libstdc++-v3/include/debug/deque @@ -38,6 +38,7 @@ namespace std { namespace __debug { + /// Class std::deque with safety/checking/debug instrumentation. template<typename _Tp, typename _Allocator = std::allocator<_Tp> > class deque : public _GLIBCXX_STD_D::deque<_Tp, _Allocator>, diff --git a/libstdc++-v3/include/debug/list b/libstdc++-v3/include/debug/list index d490489..72060e0 100644 --- a/libstdc++-v3/include/debug/list +++ b/libstdc++-v3/include/debug/list @@ -39,6 +39,7 @@ namespace std { namespace __debug { + /// Class std::list with safety/checking/debug instrumentation. template<typename _Tp, typename _Allocator = std::allocator<_Tp> > class list : public _GLIBCXX_STD_D::list<_Tp, _Allocator>, diff --git a/libstdc++-v3/include/debug/map.h b/libstdc++-v3/include/debug/map.h index c8eec2c..2ac21df 100644 --- a/libstdc++-v3/include/debug/map.h +++ b/libstdc++-v3/include/debug/map.h @@ -38,6 +38,7 @@ namespace std { namespace __debug { + /// Class std::map with safety/checking/debug instrumentation. template<typename _Key, typename _Tp, typename _Compare = std::less<_Key>, typename _Allocator = std::allocator<std::pair<const _Key, _Tp> > > class map diff --git a/libstdc++-v3/include/debug/multimap.h b/libstdc++-v3/include/debug/multimap.h index 16841ff..3c525b5 100644 --- a/libstdc++-v3/include/debug/multimap.h +++ b/libstdc++-v3/include/debug/multimap.h @@ -38,6 +38,7 @@ namespace std { namespace __debug { + /// Class std::multimap with safety/checking/debug instrumentation. template<typename _Key, typename _Tp, typename _Compare = std::less<_Key>, typename _Allocator = std::allocator<std::pair<const _Key, _Tp> > > class multimap diff --git a/libstdc++-v3/include/debug/multiset.h b/libstdc++-v3/include/debug/multiset.h index a952663..1a15c20 100644 --- a/libstdc++-v3/include/debug/multiset.h +++ b/libstdc++-v3/include/debug/multiset.h @@ -38,6 +38,7 @@ namespace std { namespace __debug { + /// Class std::multiset with safety/checking/debug instrumentation. template<typename _Key, typename _Compare = std::less<_Key>, typename _Allocator = std::allocator<_Key> > class multiset diff --git a/libstdc++-v3/include/debug/set.h b/libstdc++-v3/include/debug/set.h index 131b817..b822ba9 100644 --- a/libstdc++-v3/include/debug/set.h +++ b/libstdc++-v3/include/debug/set.h @@ -38,6 +38,7 @@ namespace std { namespace __debug { + /// Class std::set with safety/checking/debug instrumentation. template<typename _Key, typename _Compare = std::less<_Key>, typename _Allocator = std::allocator<_Key> > class set diff --git a/libstdc++-v3/include/debug/string b/libstdc++-v3/include/debug/string index d88989a..942afaa 100644 --- a/libstdc++-v3/include/debug/string +++ b/libstdc++-v3/include/debug/string @@ -36,6 +36,7 @@ namespace __gnu_debug { + /// Class std::basic_string with safety/checking/debug instrumentation. template<typename _CharT, typename _Traits = std::char_traits<_CharT>, typename _Allocator = std::allocator<_CharT> > class basic_string diff --git a/libstdc++-v3/include/debug/unordered_map b/libstdc++-v3/include/debug/unordered_map index 93a7206..999dcae 100644 --- a/libstdc++-v3/include/debug/unordered_map +++ b/libstdc++-v3/include/debug/unordered_map @@ -44,6 +44,7 @@ namespace std { namespace __debug { + /// Class std::unordered_map with safety/checking/debug instrumentation. template<typename _Key, typename _Tp, typename _Hash = std::hash<_Key>, typename _Pred = std::equal_to<_Key>, @@ -315,6 +316,7 @@ namespace __debug { __x.swap(__y); } + /// Class std::unordered_multimap with safety/checking/debug instrumentation. template<typename _Key, typename _Tp, typename _Hash = std::hash<_Key>, typename _Pred = std::equal_to<_Key>, diff --git a/libstdc++-v3/include/debug/unordered_set b/libstdc++-v3/include/debug/unordered_set index 96d0b0f..4f27c3f 100644 --- a/libstdc++-v3/include/debug/unordered_set +++ b/libstdc++-v3/include/debug/unordered_set @@ -44,6 +44,7 @@ namespace std { namespace __debug { + /// Class std::unordered_set with safety/checking/debug instrumentation. template<typename _Value, typename _Hash = std::hash<_Value>, typename _Pred = std::equal_to<_Value>, @@ -314,6 +315,7 @@ namespace __debug { __x.swap(__y); } + /// Class std::unordered_multiset with safety/checking/debug instrumentation. template<typename _Value, typename _Hash = std::hash<_Value>, typename _Pred = std::equal_to<_Value>, diff --git a/libstdc++-v3/include/debug/vector b/libstdc++-v3/include/debug/vector index 708ee45..2445b3d 100644 --- a/libstdc++-v3/include/debug/vector +++ b/libstdc++-v3/include/debug/vector @@ -39,6 +39,7 @@ namespace std { namespace __debug { + /// Class std::vector with safety/checking/debug instrumentation. template<typename _Tp, typename _Allocator = std::allocator<_Tp> > class vector |