disable_warnings.hpp 1.4 KB

123456789101112131415161718192021222324252627282930
  1. // (C) Copyright 2008 CodeRage, LLC (turkanis at coderage dot com)
  2. // (C) Copyright 2003-2007 Jonathan Turkanis
  3. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
  5. // See http://www.boost.org/libs/iostreams for documentation.
  6. #include <boost/config.hpp> // BOOST_MSVC.
  7. #include <boost/detail/workaround.hpp> // BOOST_WORKAROUND.
  8. #if defined(BOOST_MSVC)
  9. # pragma warning(push)
  10. # pragma warning(disable:4127) // Conditional expression is constant.
  11. # pragma warning(disable:4130) // Logical operation on address of string constant.
  12. # pragma warning(disable:4224) // Parameter previously defined as type.
  13. # pragma warning(disable:4244) // Conversion: possible loss of data.
  14. # pragma warning(disable:4512) // Assignment operator could not be generated.
  15. # pragma warning(disable:4706) // Assignment within conditional expression.
  16. # if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)
  17. # pragma warning(disable:6334) // sizeof applied to an expression with an operator.
  18. # endif
  19. #else
  20. # if BOOST_WORKAROUND(__BORLANDC__, < 0x600)
  21. # pragma warn -8008 // Condition always true/false.
  22. # pragma warn -8066 // Unreachable code.
  23. # pragma warn -8071 // Conversion may lose significant digits.
  24. # pragma warn -8072 // Suspicious pointer arithmetic.
  25. # pragma warn -8080 // identifier declared but never used.
  26. # endif
  27. #endif