Suppress some warnings on visual c++ 7.1.

[SVN r57921]
This commit is contained in:
Daniel James
2009-11-25 09:14:16 +00:00
parent d3fe62a646
commit 7b2c5189b3
3 changed files with 12 additions and 0 deletions

View File

@@ -15,6 +15,11 @@
#include <boost/next_prior.hpp>
#include "../objects/test.hpp"
#if BOOST_WORKAROUND(BOOST_MSVC, <= 1300)
#pragma warning(disable:4267) // conversion from 'size_t' to 'unsigned int',
// possible loss of data.
#endif
struct write_pair_type
{
template <class X1, class X2>