mirror of
https://github.com/boostorg/iterator.git
synced 2025-07-22 00:52:08 +02:00
#if def'd out the test on a writable base iterator
[SVN r21851]
This commit is contained in:
@ -52,6 +52,9 @@ int main()
|
||||
boost::function_requires< boost_concepts::ReadableIteratorConcept<Iter> >();
|
||||
boost::function_requires< boost_concepts::BidirectionalTraversalConcept<Iter> >();
|
||||
}
|
||||
#if 0
|
||||
// It does not seem feasible to make this work. Need to change docs to
|
||||
// require at lease Readable for the base iterator. -Jeremy
|
||||
{
|
||||
typedef boost::iterator_archetype<
|
||||
dummyT
|
||||
@ -62,6 +65,7 @@ int main()
|
||||
boost::function_requires< boost_concepts::WritableIteratorConcept<Iter, dummyT> >();
|
||||
boost::function_requires< boost_concepts::BidirectionalTraversalConcept<Iter> >();
|
||||
}
|
||||
#endif
|
||||
{
|
||||
typedef boost::iterator_archetype<
|
||||
dummyT
|
||||
|
Reference in New Issue
Block a user