test_arithmetic_ab_2.cpp 532 B

123456789101112131415161718
  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. #include "../performance/arithmetic_backend.hpp"
  9. #include "test_arithmetic.hpp"
  10. int main()
  11. {
  12. test<boost::multiprecision::number<boost::multiprecision::arithmetic_backend<int> > >();
  13. return boost::report_errors();
  14. }