diff --git a/concept_check_test.cpp b/concept_check_test.cpp index f35acb1..d9cd227 100644 --- a/concept_check_test.cpp +++ b/concept_check_test.cpp @@ -150,7 +150,7 @@ main() function_requires< ForwardIteratorConcept >(); } { - typedef forward_iterator_archetype > Iter; + typedef mutable_forward_iterator_archetype > Iter; function_requires< Mutable_ForwardIteratorConcept >(); } { @@ -158,7 +158,8 @@ main() function_requires< BidirectionalIteratorConcept >(); } { - typedef bidirectional_iterator_archetype > Iter; + typedef mutable_bidirectional_iterator_archetype > + Iter; function_requires< Mutable_BidirectionalIteratorConcept >(); } { @@ -166,13 +167,15 @@ main() function_requires< RandomAccessIteratorConcept >(); } { - typedef random_access_iterator_archetype > Iter; + typedef mutable_random_access_iterator_archetype > + Iter; function_requires< Mutable_RandomAccessIteratorConcept >(); } //=========================================================================== // Container Concepts + // UNDER CONSTRUCTION return 0; }