forked from boostorg/unordered
Some more warning fixes for Visual C++ 7.1
[SVN r57719]
This commit is contained in:
@ -74,9 +74,7 @@ namespace boost { namespace unordered_detail {
|
||||
|
||||
#if defined(BOOST_MSVC)
|
||||
#pragma warning(push)
|
||||
#if BOOST_MSVC >= 1400
|
||||
#pragma warning(disable:4100) // unreferenced formal parameter
|
||||
#endif
|
||||
#endif
|
||||
|
||||
template <class T>
|
||||
|
@ -18,6 +18,7 @@
|
||||
#if defined(BOOST_MSVC)
|
||||
#pragma warning(push)
|
||||
#pragma warning(disable:4127) // conditional expression is constant
|
||||
#pragma warning(disable:4267) // conversion from 'size_t' to 'unsigned int', possible loss of data
|
||||
#endif
|
||||
|
||||
namespace test
|
||||
|
Reference in New Issue
Block a user