summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjhoffert <jhoffert@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-11-13 13:45:13 +0000
committerjhoffert <jhoffert@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-11-13 13:45:13 +0000
commit935070205e0e228746b734d05a9173bc115869c0 (patch)
treed7cfe9b95db0fc7390309acaa239c2f4b979268f
parent2a66e138bcff9eee570dcb998554c03f847bbf1a (diff)
downloadATCD-935070205e0e228746b734d05a9173bc115869c0.tar.gz
Changed iterator to take only one template parameter.
-rw-r--r--TAO/tao/Unbounded_Value_Sequence_T.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/Unbounded_Value_Sequence_T.h b/TAO/tao/Unbounded_Value_Sequence_T.h
index 6f69cc84d9d..742324745c1 100644
--- a/TAO/tao/Unbounded_Value_Sequence_T.h
+++ b/TAO/tao/Unbounded_Value_Sequence_T.h
@@ -95,10 +95,10 @@ public:
///
// = Traits and factory methods that create iterators.
- typedef details::Generic_Sequence_Iterator<value_type, allocation_traits, element_traits> iterator;
- typedef details::Const_Generic_Sequence_Iterator<value_type, allocation_traits, element_traits> const_iterator;
- typedef details::Generic_Sequence_Reverse_Iterator<value_type, allocation_traits, element_traits> reverse_iterator;
- typedef details::Const_Generic_Sequence_Reverse_Iterator<value_type, allocation_traits, element_traits> const_reverse_iterator;
+ typedef details::Generic_Sequence_Iterator<details::generic_sequence<value_type, allocation_traits, element_traits> > iterator;
+ typedef details::Const_Generic_Sequence_Iterator<details::generic_sequence<value_type, allocation_traits, element_traits> > const_iterator;
+ typedef details::Generic_Sequence_Reverse_Iterator<details::generic_sequence<value_type, allocation_traits, element_traits> > reverse_iterator;
+ typedef details::Const_Generic_Sequence_Reverse_Iterator<details::generic_sequence<value_type, allocation_traits, element_traits> > const_reverse_iterator;
// Get an iterator that points to the beginning of the sequence.
iterator begin (void)