removed use of trivial iterator

[SVN r20490]
This commit is contained in:
Jeremy Siek
2003-10-25 01:48:54 +00:00
parent 60e6cc268c
commit 0ecc9d31b5
2 changed files with 2 additions and 10 deletions

View File

@@ -129,14 +129,6 @@ main()
//===========================================================================
// Iterator Concepts
{
typedef trivial_iterator_archetype<null_archetype<> > Iter;
function_requires< TrivialIteratorConcept<Iter> >();
}
{
typedef mutable_trivial_iterator_archetype<null_archetype<> > Iter;
function_requires< Mutable_TrivialIteratorConcept<Iter> >();
}
{
typedef input_iterator_archetype<null_archetype<> > Iter;
function_requires< InputIteratorConcept<Iter> >();

View File

@@ -4,10 +4,10 @@
// "as is" without express or implied warranty, and with no claim as
// to its suitability for any purpose.
#include <boost/concept_check.hpp>
#include <boost/concept_archetype.hpp>
#include <algorithm>
#include <numeric>
#include <boost/concept_check.hpp>
#include <boost/concept_archetype.hpp>
/*