diff options
author | jacob <jacob@yandex-team.ru> | 2022-02-10 16:49:53 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:53 +0300 |
commit | 085a76cb8fd1fd01e9483d056938f022970cb4f0 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/generic/ymath.h | |
parent | 1bf57447b8a115cd60bb6f8509b9b148e1b6debd (diff) | |
download | ydb-085a76cb8fd1fd01e9483d056938f022970cb4f0.tar.gz |
Restoring authorship annotation for <jacob@yandex-team.ru>. Commit 2 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 edf992caa0..9ff9ae2abe 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 |