Commit ee1e5e63 by Benjamin Kosnik Committed by Benjamin Kosnik

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
parent 83d58961
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> 2010-08-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* configure: Regenerate. * configure: Regenerate.
......
...@@ -68,6 +68,12 @@ _GLIBCXX_BEGIN_NAMESPACE(std) ...@@ -68,6 +68,12 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
/** /**
* @defgroup iterators Iterators * @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 * These are empty types, used to distinguish different iterators. The
* distinction is not made by what they contain, but simply by what they * distinction is not made by what they contain, but simply by what they
* are. Different underlying algorithms can then be used based on the * are. Different underlying algorithms can then be used based on the
...@@ -90,7 +96,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) ...@@ -90,7 +96,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
/// Random-access iterators support a superset of bidirectional /// Random-access iterators support a superset of bidirectional
/// iterator operations. /// iterator operations.
struct random_access_iterator_tag : public bidirectional_iterator_tag { }; struct random_access_iterator_tag : public bidirectional_iterator_tag { };
//@}
/** /**
* @brief Common %iterator class. * @brief Common %iterator class.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment