mirror of
https://github.com/boostorg/utility.git
synced 2025-05-09 15:04:00 +00:00
A fix for EDG
[SVN r9096]
This commit is contained in:
parent
87aafab759
commit
0ea7d36ad0
@ -366,9 +366,10 @@ main()
|
|||||||
FilterIter i(array, FilterPolicies(one_or_four(), array + N));
|
FilterIter i(array, FilterPolicies(one_or_four(), array + N));
|
||||||
boost::forward_iterator_test(i, dummyT(1), dummyT(4));
|
boost::forward_iterator_test(i, dummyT(1), dummyT(4));
|
||||||
|
|
||||||
BOOST_STATIC_ASSERT((boost::is_same<
|
enum { is_forward = boost::is_same<
|
||||||
boost::detail::iterator_traits<FilterIter>::iterator_category,
|
FilterIter::iterator_category,
|
||||||
std::forward_iterator_tag>::value));
|
std::forward_iterator_tag>::value };
|
||||||
|
BOOST_STATIC_ASSERT(is_forward);
|
||||||
|
|
||||||
// On compilers not supporting partial specialization, we can do more type
|
// On compilers not supporting partial specialization, we can do more type
|
||||||
// deduction with deque iterators than with pointers... unless the library
|
// deduction with deque iterators than with pointers... unless the library
|
||||||
|
Loading…
x
Reference in New Issue
Block a user