mirror of
https://github.com/boostorg/functional.git
synced 2025-08-01 05:24:31 +02:00
Only suppress warning for Visual C++ 8 and later. Refs #1509
[SVN r41866]
This commit is contained in:
@@ -16,9 +16,11 @@
|
||||
|
||||
#if defined(BOOST_MSVC)
|
||||
#pragma warning(push)
|
||||
#if BOOST_MSVC >= 1400
|
||||
#pragma warning(disable:6294) // Ill-defined for-loop: initial condition does
|
||||
// not satisfy test. Loop body not executed
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include <boost/functional/detail/float_functions.hpp>
|
||||
#include <boost/integer/static_log2.hpp>
|
||||
|
Reference in New Issue
Block a user