Workaround macro for intel-7.1-vc6-*
What is the correct BOOST_WORKAROUND macro for this platform? I'm currently using #ifdef ((BOOST_WORKAROUND( BOOST_INTEL_CXX_VERSION, == 710)) && defined(_WIN32)) which does not seem to be enough. Thanks, -Jonathan
On Wed, 2004-09-22 at 17:54, Jonathan Brandmeyer wrote:
What is the correct BOOST_WORKAROUND macro for this platform? I'm currently using
#ifdef ((BOOST_WORKAROUND( BOOST_INTEL_CXX_VERSION, == 710)) && defined(_WIN32))
Actually, #if ...
which does not seem to be enough.
Thanks, -Jonathan
_______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
Jonathan Brandmeyer wrote:
On Wed, 2004-09-22 at 17:54, Jonathan Brandmeyer wrote:
What is the correct BOOST_WORKAROUND macro for this platform? I'm currently using
#ifdef ((BOOST_WORKAROUND( BOOST_INTEL_CXX_VERSION, == 710)) && defined(_WIN32))
BTW, there is a macro BOOST_INTEL_WIN that you should use here. Stefan
Jonathan Brandmeyer writes:
What is the correct BOOST_WORKAROUND macro for this platform? I'm currently using
#ifdef ((BOOST_WORKAROUND( BOOST_INTEL_CXX_VERSION, == 710)) && defined(_WIN32))
which does not seem to be enough.
This should work: #if BOOST_WORKAROUND(BOOST_INTEL_WIN, == 710) \ && BOOST_WORKAROUND(_MSC_VER, == 1200) -- Aleksey Gurtovoy MetaCommunications Engineering
participants (3)
-
Aleksey Gurtovoy -
Jonathan Brandmeyer -
Stefan Slapeta