forked from boostorg/iterator
Remove tabs in file.
[SVN r24043]
This commit is contained in:
@ -89,7 +89,7 @@ main()
|
||||
boost_concepts::RandomAccessTraversalConcept<old_iterator> >();
|
||||
|
||||
boost::function_requires<
|
||||
boost_concepts::InteroperableIteratorConcept<int*, int const*> >();
|
||||
boost_concepts::InteroperableIteratorConcept<int*, int const*> >();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -43,9 +43,9 @@ int main()
|
||||
STATIC_ASSERT_SAME(Iter::difference_type, std::ptrdiff_t);
|
||||
|
||||
BOOST_STATIC_ASSERT((boost::is_convertible<Iter::iterator_category,
|
||||
std::random_access_iterator_tag>::value));
|
||||
std::random_access_iterator_tag>::value));
|
||||
BOOST_STATIC_ASSERT((boost::is_convertible<boost::iterator_traversal<Iter>::type,
|
||||
boost::random_access_traversal_tag>::value));
|
||||
boost::random_access_traversal_tag>::value));
|
||||
}
|
||||
{
|
||||
typedef boost::indirect_iterator<int const**> Iter;
|
||||
@ -74,9 +74,9 @@ int main()
|
||||
STATIC_ASSERT_SAME(Iter::difference_type, std::ptrdiff_t);
|
||||
|
||||
BOOST_STATIC_ASSERT((boost::is_convertible<Iter::iterator_category,
|
||||
std::random_access_iterator_tag>::value));
|
||||
std::random_access_iterator_tag>::value));
|
||||
BOOST_STATIC_ASSERT((boost::is_convertible<boost::iterator_traversal<Iter>::type,
|
||||
boost::random_access_traversal_tag>::value));
|
||||
boost::random_access_traversal_tag>::value));
|
||||
}
|
||||
{
|
||||
typedef boost::indirect_iterator<char**, int, std::random_access_iterator_tag, long&, short> Iter;
|
||||
|
Reference in New Issue
Block a user