OSDN Git Service

2010-08-26 Benjamin Kosnik <bkoz@redhat.com>
authorbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 27 Aug 2010 18:16:05 +0000 (18:16 +0000)
committerbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 27 Aug 2010 18:16:05 +0000 (18:16 +0000)
* include/bits/stl_iterator_base_types.h: Fix doxygen warning.

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

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/stl_iterator_base_types.h

index aa44424..9f72d84 100644 (file)
@@ -1,3 +1,7 @@
+2010-08-26  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * include/bits/stl_iterator_base_types.h: Fix doxygen warning.
+
 2010-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        * configure: Regenerate.
index d934f43..70ad870 100644 (file)
@@ -68,6 +68,12 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
 
   /**
    *  @defgroup iterators Iterators
+   *  Abstractions for uniform iterating through various underlying types.
+  */
+  //@{ 
+
+  /**
+   *  @defgroup iterator_tags Iterator Tags
    *  These are empty types, used to distinguish different iterators.  The
    *  distinction is not made by what they contain, but simply by what they
    *  are.  Different underlying algorithms can then be used based on the
@@ -90,7 +96,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
   /// Random-access iterators support a superset of bidirectional
   /// iterator operations.
   struct random_access_iterator_tag : public bidirectional_iterator_tag { };
-
+  //@}
 
   /**
    *  @brief  Common %iterator class.