stl_iterator_base_types.h: Fix doxygen warning.

2010-08-26  Benjamin Kosnik  <bkoz@redhat.com>

	* include/bits/stl_iterator_base_types.h: Fix doxygen warning.

From-SVN: r163592
This commit is contained in:
Benjamin Kosnik 2010-08-27 18:16:05 +00:00 committed by Benjamin Kosnik
parent 83d5896129
commit ee1e5e63ec
2 changed files with 11 additions and 1 deletions

View 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.

View 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.