Disable more Visual C++ warnings in Function headers. Fixes #1416

[SVN r41798]
This commit is contained in:
Douglas Gregor
2007-12-06 18:39:06 +00:00
parent 81e558491b
commit cead36cd5b
2 changed files with 10 additions and 0 deletions

View File

@ -33,6 +33,7 @@
#if defined(BOOST_MSVC)
# pragma warning( push )
# pragma warning( disable : 4793 ) // complaint about native code generation
# pragma warning( disable : 4127 ) // "conditional expression is constant"
#endif
// Define BOOST_FUNCTION_STD_NS to the namespace that contains type_info.