test_arithmetic_dbg_adptr1.cpp 637 B

1234567891011121314151617181920
  1. ///////////////////////////////////////////////////////////////
  2. // Copyright 2012 John Maddock. Distributed under the Boost
  3. // Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
  5. #ifdef _MSC_VER
  6. #define _SCL_SECURE_NO_WARNINGS
  7. #endif
  8. #define NO_MIXED_OPS
  9. #include <boost/multiprecision/debug_adaptor.hpp>
  10. #include <boost/multiprecision/cpp_dec_float.hpp>
  11. #include "test_arithmetic.hpp"
  12. int main()
  13. {
  14. test<boost::multiprecision::number<boost::multiprecision::debug_adaptor<boost::multiprecision::cpp_dec_float<50> > > >();
  15. return boost::report_errors();
  16. }