From 0ecc9d31b5374e963d956190093c32a460133a79 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Sat, 25 Oct 2003 01:48:54 +0000 Subject: [PATCH] removed use of trivial iterator [SVN r20490] --- concept_check_test.cpp | 8 -------- stl_concept_covering.cpp | 4 ++-- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/concept_check_test.cpp b/concept_check_test.cpp index d9cd227..32f0dd5 100644 --- a/concept_check_test.cpp +++ b/concept_check_test.cpp @@ -129,14 +129,6 @@ main() //=========================================================================== // Iterator Concepts - { - typedef trivial_iterator_archetype > Iter; - function_requires< TrivialIteratorConcept >(); - } - { - typedef mutable_trivial_iterator_archetype > Iter; - function_requires< Mutable_TrivialIteratorConcept >(); - } { typedef input_iterator_archetype > Iter; function_requires< InputIteratorConcept >(); diff --git a/stl_concept_covering.cpp b/stl_concept_covering.cpp index 622bd60..171affa 100644 --- a/stl_concept_covering.cpp +++ b/stl_concept_covering.cpp @@ -4,10 +4,10 @@ // "as is" without express or implied warranty, and with no claim as // to its suitability for any purpose. -#include -#include #include #include +#include +#include /*