added VC6 to list of compilers with broken overload res

[SVN r27071]
This commit is contained in:
Jonathan Turkanis
2005-02-03 16:30:16 +00:00
parent 3e94fdbbfd
commit 5f6fa2f55a

View File

@@ -14,11 +14,13 @@
# pragma once
#endif
#include <boost/config.hpp> // BOOST_MSVC.
#include <boost/detail/workaround.hpp>
#if !defined(BOOST_IOSTREAMS_BROKEN_OVERLOAD_RESOLUTION)
# if BOOST_WORKAROUND(__MWERKS__, <= 0x3003) || \
BOOST_WORKAROUND(__BORLANDC__, < 0x600)
BOOST_WORKAROUND(__BORLANDC__, < 0x600) || \
BOOST_WORKAROUND(BOOST_MSVC, <= 1300)
# define BOOST_IOSTREAMS_BROKEN_OVERLOAD_RESOLUTION
# endif
#endif