]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
bitset: Add doxygen markup.
authorBenjamin Kosnik <bkoz@redhat.com>
Tue, 17 Nov 2009 20:38:33 +0000 (20:38 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Tue, 17 Nov 2009 20:38:33 +0000 (20:38 +0000)
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

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 2c93286d985d5e3ac9f2d1e0511faf2748296777..35d75b3f9008d2d0bdcc7710f4b5176139db4757 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 b4934423b8022ac897d068e847cb535b56680e5f..c6203d9a985ea48aa7a3f1c508a6301be0a1eb97 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 3a39dc46004f7526486c4d41ec6668b6b9dde910..d6078f580e1504328fe3e3142e3fa8f9e8a19a64 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 d4904893f22c6f2d5fc9fbb25eb2512dc9c2c22d..72060e0dc9cfbf7e4d248820ebd09519caa9ad18 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 c8eec2c4c6f10761aec31fa92d6bc8c5466637bd..2ac21dff5bc885eb82e20f189f7eac9d34f1a1fd 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 16841ff86680ef87146905d2a22c3dc756497e9b..3c525b5fac6a4a7a141f536750db121d030af18e 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 a952663ea31f3b95378509cca7ec3d7b31cdac64..1a15c207bc89bf4efc8a129a848e3b35cfb1c0b6 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 131b817d5fa4dd99db4a6e5291402a99d5caf5a0..b822ba9606ef1dcecfdf6a3eeed72f6d3b3d7927 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 d88989add675e333761e4f7f01ab4653178e0584..942afaa8337b93475cd79808a198d196985d1eed 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 93a720653a3ab93eadcd99b3af4a2be4af1621d6..999dcae58fc1c82c32acd1f8ef67a588d5649d97 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 96d0b0f3e35a8901d900d85fc20f71c891a2a8d7..4f27c3f375dfcf1f12b235b6e3ed1a98caf539cf 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 708ee455fe97de08085bf3f2859f6920f101197a..2445b3d6890f7fae2f7f54960b3babbb7ca4d06d 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