From: Benjamin Kosnik Date: Tue, 17 Nov 2009 20:38:33 +0000 (+0000) Subject: bitset: Add doxygen markup. X-Git-Tag: releases/gcc-4.5.0~2306 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1ceb9e066c31914dc6ef69c0cf2b25366d863d96;p=thirdparty%2Fgcc.git bitset: Add doxygen markup. 2009-11-17 Benjamin Kosnik * 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 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 2c93286d985d..35d75b3f9008 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,17 @@ +2009-11-17 Benjamin Kosnik + + * 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 * libsupc++/cxxabi.h (__cxa_demangle): Fix typo in comment. diff --git a/libstdc++-v3/include/debug/bitset b/libstdc++-v3/include/debug/bitset index b4934423b802..c6203d9a985e 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 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 3a39dc46004f..d6078f580e15 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 > class deque : public _GLIBCXX_STD_D::deque<_Tp, _Allocator>, diff --git a/libstdc++-v3/include/debug/list b/libstdc++-v3/include/debug/list index d4904893f22c..72060e0dc9cf 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 > 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 c8eec2c4c6f1..2ac21dff5bc8 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 _Allocator = std::allocator > > class map diff --git a/libstdc++-v3/include/debug/multimap.h b/libstdc++-v3/include/debug/multimap.h index 16841ff86680..3c525b5fac6a 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 _Allocator = std::allocator > > class multimap diff --git a/libstdc++-v3/include/debug/multiset.h b/libstdc++-v3/include/debug/multiset.h index a952663ea31f..1a15c207bc89 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 _Allocator = std::allocator<_Key> > class multiset diff --git a/libstdc++-v3/include/debug/set.h b/libstdc++-v3/include/debug/set.h index 131b817d5fa4..b822ba9606ef 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 _Allocator = std::allocator<_Key> > class set diff --git a/libstdc++-v3/include/debug/string b/libstdc++-v3/include/debug/string index d88989add675..942afaa8337b 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 _Allocator = std::allocator<_CharT> > class basic_string diff --git a/libstdc++-v3/include/debug/unordered_map b/libstdc++-v3/include/debug/unordered_map index 93a720653a3a..999dcae58fc1 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 _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 _Pred = std::equal_to<_Key>, diff --git a/libstdc++-v3/include/debug/unordered_set b/libstdc++-v3/include/debug/unordered_set index 96d0b0f3e35a..4f27c3f375df 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 _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 _Pred = std::equal_to<_Value>, diff --git a/libstdc++-v3/include/debug/vector b/libstdc++-v3/include/debug/vector index 708ee455fe97..2445b3d6890f 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 > class vector