disabled warning about operator-> not returning a UDT. If operator->

does not get called, it should not be checked for this error. This
showed up when using an iterator with value_type=int.


[SVN r7813]
This commit is contained in:
Jeremy Siek 2000-09-25 05:36:21 +00:00
parent 9628e5adb0
commit 4f9b0bcb9b

View File

@ -69,6 +69,10 @@
#pragma set woff 1234
#endif
#if defined(BOOST_MSVC)
# pragma warning( disable : 4284 ) // complaint about return type of
#endif // operator-> not begin a UDT
namespace boost {
namespace detail {