You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, std::acosh and friends are not part of std because our c++config.h lacks _GLIBCXX_USE_C99_MATH_TR1. Should be easily fixable but we also need to guard some imports (like log2, log2f and tgammaf) with #ifdef _GNU_SOURCE as they are not defined by math.h otherwise.
As a temporary solution, one may simply omit the std namespace so that C versions will be dragged right from the global C namespace.
The text was updated successfully, but these errors were encountered:
Currently,
std::acosh
and friends are not part ofstd
because ourc++config.h
lacks_GLIBCXX_USE_C99_MATH_TR1
. Should be easily fixable but we also need to guard some imports (likelog2
,log2f
andtgammaf
) with #ifdef _GNU_SOURCE as they are not defined bymath.h
otherwise.As a temporary solution, one may simply omit the
std
namespace so that C versions will be dragged right from the global C namespace.The text was updated successfully, but these errors were encountered: