Workaround CW8 issues with using static_cast on templates with template ctors.

[SVN r24214]
This commit is contained in:
Rene Rivera
2004-07-31 22:56:49 +00:00
parent dd72d599c8
commit 3599398eca

View File

@ -814,8 +814,8 @@ namespace boost
is_interoperable< Derived1, Derived2 >::value \
)); \
return_prefix iterator_core_access::base_op( \
static_cast<Derived1 const&>(lhs) \
, static_cast<Derived2 const&>(rhs) \
*static_cast<Derived1 const*>(&lhs) \
, *static_cast<Derived2 const*>(&rhs) \
, BOOST_ITERATOR_CONVERTIBLE(Derived2,Derived1) \
); \
}