Fix 31 character limit

[SVN r25193]
This commit is contained in:
Dave Abrahams
2004-09-18 13:32:24 +00:00
parent 65af4c96a9
commit 1f999864a1
8 changed files with 8 additions and 8 deletions

View File

@ -0,0 +1,15 @@
#include <boost/iterator/iterator_concepts.hpp>
#include <boost/iterator/iterator_archetypes.hpp>
#include <boost/cstdlib.hpp>
int main()
{
typedef boost::iterator_archetype<
int
, boost::iterator_archetypes::readable_iterator_t
, boost::single_pass_traversal_tag
> Iter;
boost::function_requires<
boost_concepts::LvalueIteratorConcept<Iter> >();
return boost::exit_success;
}