mirror of git://gcc.gnu.org/git/gcc.git
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:
parent
83d5896129
commit
ee1e5e63ec
|
|
@ -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>
|
2010-08-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
/// 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.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue