diff --git a/math/mathcore/inc/Math/CladDerivator.h b/math/mathcore/inc/Math/CladDerivator.h index d5b46e444c996..ada696c300c1f 100644 --- a/math/mathcore/inc/Math/CladDerivator.h +++ b/math/mathcore/inc/Math/CladDerivator.h @@ -206,20 +206,6 @@ ValueAndPushforward TanH_pushforward(T x, T d_x) return {::TMath::TanH(x), (1. / ::TMath::Sq(::TMath::CosH(x))) * d_x}; } -#ifdef WIN32 -// Additional custom derivatives that can be removed -// after Issue #12108 in ROOT is resolved -// constexpr is removed -ValueAndPushforward Pi_pushforward() -{ - return {3.1415926535897931, 0.}; -} -// constexpr is removed -ValueAndPushforward Ln10_pushforward() -{ - return {2.3025850929940459, 0.}; -} -#endif } // namespace TMath namespace ROOT {