multiprecision/test/test_arithmetic_skeleton.cpp
jzmaddock 6f73233965 Add better instructions for adding a new backend,
plus a "skeleton" backend designed to be easily modified to support a new type.
2020-02-03 09:00:19 +00:00

18 lines
473 B
C++

///////////////////////////////////////////////////////////////
// Copyright 2012 John Maddock. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
#ifdef _MSC_VER
#define _SCL_SECURE_NO_WARNINGS
#endif
#include "skeleton_backend.hpp"
#include "test_arithmetic.hpp"
int main()
{
test<boost::multiprecision::skeleton_number>();
return boost::report_errors();
}