summaryrefslogtreecommitdiffstats
path: root/util/generic/ymath.h
diff options
context:
space:
mode:
authorpozhilov <[email protected]>2022-02-10 16:49:27 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:49:27 +0300
commit29b120fd551ad11a832424491fa992809feb3e99 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /util/generic/ymath.h
parent23bf1d16dddf213a6aa8e8d5c8621e1242a1f118 (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/generic/ymath.h')
-rw-r--r--util/generic/ymath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/generic/ymath.h b/util/generic/ymath.h
index 5998207f9fd..9ff9ae2abe2 100644
--- a/util/generic/ymath.h
+++ b/util/generic/ymath.h
@@ -18,7 +18,7 @@ constexpr double M_LN2_INV = M_LOG2E; // 1 / ln(2) == log2(e)
* \returns Absolute value of the provided argument.
*/
template <class T>
-constexpr T Abs(T value) {
+constexpr T Abs(T value) {
return std::abs(value);
}