diff options
author | jacob <[email protected]> | 2022-02-10 16:49:53 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:53 +0300 |
commit | 1bf57447b8a115cd60bb6f8509b9b148e1b6debd (patch) | |
tree | b9f3ce9adae968ad4924f36058b631b58ef03e57 /util/generic/ymath.h | |
parent | 3bf10d3f40b502d181ef52f5c4602c98cb135360 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/generic/ymath.h')
-rw-r--r-- | util/generic/ymath.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/generic/ymath.h b/util/generic/ymath.h index 9ff9ae2abe2..edf992caa02 100644 --- a/util/generic/ymath.h +++ b/util/generic/ymath.h @@ -99,7 +99,7 @@ inline double Erf(double x) { return erf(x); } #endif - + /** * @returns Natural logarithm of the absolute value * of the gamma function of provided argument. @@ -114,8 +114,8 @@ inline double LogGamma(double x) noexcept { #elif defined(__GNUC__) return __builtin_lgamma(x); #elif defined(_unix_) - return lgamma(x); -#else + return lgamma(x); +#else extern double LogGammaImpl(double); return LogGammaImpl(x); #endif |