changed _MSC_VER to BOOST_MSVC

[SVN r10705]
This commit is contained in:
Jeremy Siek
2001-07-25 19:38:41 +00:00
parent ac05307515
commit 81e3df2b36

View File

@ -656,7 +656,7 @@ struct iterator_adaptor :
return policies().dereference(type<reference>(), iter());
}
#ifdef _MSC_VER
#ifdef BOOST_MSVC
# pragma warning(push)
# pragma warning( disable : 4284 )
#endif
@ -665,7 +665,7 @@ struct iterator_adaptor :
operator->() const
{ return detail::operator_arrow(*this, iterator_category()); }
#ifdef _MSC_VER
#ifdef BOOST_MSVC
# pragma warning(pop)
#endif