summaryrefslogtreecommitdiffstats
path: root/util/generic/ymath.h
diff options
context:
space:
mode:
authorjacob <[email protected]>2022-02-10 16:49:53 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:49:53 +0300
commit1bf57447b8a115cd60bb6f8509b9b148e1b6debd (patch)
treeb9f3ce9adae968ad4924f36058b631b58ef03e57 /util/generic/ymath.h
parent3bf10d3f40b502d181ef52f5c4602c98cb135360 (diff)
Restoring authorship annotation for <[email protected]>. Commit 1 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 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