summaryrefslogtreecommitdiff
path: root/tao/Generic_Sequence_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'tao/Generic_Sequence_T.h')
-rw-r--r--tao/Generic_Sequence_T.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tao/Generic_Sequence_T.h b/tao/Generic_Sequence_T.h
index f977d4af29f..58500da4aa5 100644
--- a/tao/Generic_Sequence_T.h
+++ b/tao/Generic_Sequence_T.h
@@ -375,26 +375,26 @@ public:
typedef Generic_Sequence_Reverse_Iterator<generic_sequence<T, ALLOCATION_TRAITS, ELEMENT_TRAITS> > reverse_iterator;
typedef Const_Generic_Sequence_Reverse_Iterator<generic_sequence<T, ALLOCATION_TRAITS, ELEMENT_TRAITS> > const_reverse_iterator;
- // Get an iterator that points to the beginning of the sequence.
+ /// Get an iterator that points to the beginning of the sequence.
iterator begin (void)
{
return typename generic_sequence<T, ALLOCATION_TRAITS, ELEMENT_TRAITS>::iterator (this);
}
- // Get a const iterator that points to the beginning of the sequence.
+ /// Get a const iterator that points to the beginning of the sequence.
const_iterator begin (void) const
{
return typename generic_sequence<T, ALLOCATION_TRAITS, ELEMENT_TRAITS>::const_iterator (this);
}
- // Get an iterator that points to the end of the sequence.
+ /// Get an iterator that points to the end of the sequence.
iterator end (void)
{
return typename generic_sequence<T, ALLOCATION_TRAITS, ELEMENT_TRAITS>::iterator (this,
this->length_);
}
- // Get a const iterator that points to the end of the sequence.
+ /// Get a const iterator that points to the end of the sequence.
const_iterator end (void) const
{
return typename generic_sequence<T, ALLOCATION_TRAITS, ELEMENT_TRAITS>::const_iterator (this,