Try to suppress a Visual C++ warning. Refs #1509

[SVN r41864]
This commit is contained in:
Daniel James
2007-12-08 11:04:40 +00:00
parent 06b83dbce0
commit 210ed051dd

View File

@@ -14,6 +14,12 @@
# pragma once
#endif
#if defined(BOOST_MSVC)
#pragma warning(push)
#pragma warning(disable:6294) // Ill-defined for-loop: initial condition does
// not satisfy test. Loop body not executed
#endif
#include <boost/functional/detail/float_functions.hpp>
#include <boost/integer/static_log2.hpp>
#include <boost/cstdint.hpp>
@@ -181,4 +187,8 @@ namespace boost
}
}
#if defined(BOOST_MSVC)
#pragma warning(pop)
#endif
#endif