pre.hxx 609 B

123456789101112131415161718192021
  1. // file : xml/details/pre.hxx
  2. // copyright : Copyright (c) 2013-2014 Code Synthesis Tools CC
  3. // license : MIT; see accompanying LICENSE file
  4. #ifdef _MSC_VER
  5. // Push warning state.
  6. //
  7. # pragma warning (push, 3)
  8. // Disabled warnings.
  9. //
  10. # pragma warning (disable:4251) // needs to have DLL-interface
  11. # pragma warning (disable:4290) // exception specification ignored
  12. # pragma warning (disable:4355) // passing 'this' to a member
  13. # pragma warning (disable:4800) // forcing value to bool
  14. // Elevated warnings.
  15. //
  16. # pragma warning (2:4239) // standard doesn't allow this conversion
  17. #endif