diff options
author | pozhilov <[email protected]> | 2022-02-10 16:49:27 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:27 +0300 |
commit | 29b120fd551ad11a832424491fa992809feb3e99 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/generic/ymath.h | |
parent | 23bf1d16dddf213a6aa8e8d5c8621e1242a1f118 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/generic/ymath.h')
-rw-r--r-- | util/generic/ymath.h | 2 |
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); } |