mirror of
https://github.com/boostorg/multiprecision.git
synced 2026-01-19 04:22:11 +00:00
* Make __float128 a floating point type. Allows float128 to be used in non gnu mode. Enable some tests for non-gnu mode. Fixes https://github.com/boostorg/multiprecision/issues/569. Also: * Remove msvc-14.0 testing as no longer supported. * correct float128_snips.cpp * Run specfun tests on github rather than CircleCI as the latter runs out of resources.
17 lines
344 B
C++
17 lines
344 B
C++
// Copyright John Maddock 2024.
|
|
// Use, modification and distribution are subject to the
|
|
// Boost Software License, Version 1.0. (See accompanying file
|
|
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#include <boost/config.hpp>
|
|
|
|
#include <quadmath.h>
|
|
|
|
int main()
|
|
{
|
|
__float128 f = 0;
|
|
f = sqrtq(f);
|
|
|
|
return 0;
|
|
}
|