$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Matt Borland (matt_at_[hidden])
Date: 2021-03-24 15:52:13
On Wed, 2021-03-24 at 14:46 +0100, Luigi Ballabio via Boost wrote:
> Hello, I have a minimal example now. The program:
> ------
> #include <boost/math/special_functions/atanh.hpp>
>
> int main() {
> auto x = boost::math::atanh(1.0);
> return int(x);
> }
> ------
> fails to link in an Ubuntu 20.10 Docker image with g++ 10.2.0 if using
> Boost 1.76.0.beta1. It links with 1.75.0, or with the beta if I also add
> #include <boost/math/special_functions/fpclassify.hpp>
>
> Thanks,
> Luigi
Luigi,
I opened a PR to address your issue. See: https://github.com/boostorg/math/pull/580
Matt