2009-11-17 Benjamin Kosnik <bkoz@redhat.com>
authorbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 17 Nov 2009 20:38:33 +0000 (20:38 +0000)
committerbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 17 Nov 2009 20:38:33 +0000 (20:38 +0000)
* 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.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154268 138bc75d-0d04-0410-961f-82ee72b054a4

12 files changed:
libstdc++-v3/ChangeLog
libstdc++-v3/include/debug/bitset
libstdc++-v3/include/debug/deque
libstdc++-v3/include/debug/list
libstdc++-v3/include/debug/map.h
libstdc++-v3/include/debug/multimap.h
libstdc++-v3/include/debug/multiset.h
libstdc++-v3/include/debug/set.h
libstdc++-v3/include/debug/string
libstdc++-v3/include/debug/unordered_map
libstdc++-v3/include/debug/unordered_set
libstdc++-v3/include/debug/vector

index 2c93286..35d75b3 100644 (file)
@@ -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.
index b493442..c6203d9 100644 (file)
@@ -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
 
index 3a39dc4..d6078f5 100644 (file)
@@ -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>,
index d490489..72060e0 100644 (file)
@@ -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>,
index c8eec2c..2ac21df 100644 (file)
@@ -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
index 16841ff..3c525b5 100644 (file)
@@ -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
index a952663..1a15c20 100644 (file)
@@ -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
index 131b817..b822ba9 100644 (file)
@@ -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
index d88989a..942afaa 100644 (file)
@@ -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
index 93a7206..999dcae 100644 (file)
@@ -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>,
index 96d0b0f..4f27c3f 100644 (file)
@@ -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>,
index 708ee45..2445b3d 100644 (file)
@@ -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