aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/ymath.h
diff options
context:
space:
mode:
authorjacob <jacob@yandex-team.ru>2022-02-10 16:49:53 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:53 +0300
commit085a76cb8fd1fd01e9483d056938f022970cb4f0 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /util/generic/ymath.h
parent1bf57447b8a115cd60bb6f8509b9b148e1b6debd (diff)
downloadydb-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.h6
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