mirror of
https://github.com/boostorg/multiprecision.git
synced 2025-05-12 05:51:48 +00:00
BOOST_STATIC_ASSERT BOOST_STATIC_CONST boost::enable_if/disable_if Changed many traits class usages from boost:: to std::.
14 lines
377 B
C++
14 lines
377 B
C++
///////////////////////////////////////////////////////////////
|
|
// Copyright 2019 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
|
|
|
|
#include "../performance_test.hpp"
|
|
|
|
void test01()
|
|
{
|
|
#ifdef TEST_INT64
|
|
test<std::uint64_t>("std::uint64_t", 64);
|
|
#endif
|
|
}
|