Fix the version check when suppressing warnings.

[SVN r57962]
This commit is contained in:
Daniel James
2009-11-26 23:14:53 +00:00
parent 7b2c5189b3
commit 0dcf1b5cd2
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
#include "../helpers/random_values.hpp"
#include "../helpers/helpers.hpp"
#if BOOST_WORKAROUND(BOOST_MSVC, <= 1300)
#if BOOST_WORKAROUND(BOOST_MSVC, < 1400)
#pragma warning(disable:4267) // conversion from 'size_t' to 'unsigned int',
// possible loss of data.
#endif

View File

@ -15,7 +15,7 @@
#include <boost/next_prior.hpp>
#include "../objects/test.hpp"
#if BOOST_WORKAROUND(BOOST_MSVC, <= 1300)
#if BOOST_WORKAROUND(BOOST_MSVC, < 1400)
#pragma warning(disable:4267) // conversion from 'size_t' to 'unsigned int',
// possible loss of data.
#endif