diff options
author | esgv <[email protected]> | 2022-02-10 16:50:24 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:50:24 +0300 |
commit | e7879def805c52076a0b162a0270dfb229379d4e (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/generic/ymath.cpp | |
parent | 555c14603bb6a3b676b9ace65d6e5a8b35a32fee (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/generic/ymath.cpp')
-rw-r--r-- | util/generic/ymath.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/util/generic/ymath.cpp b/util/generic/ymath.cpp index b2846b2f10e..31270728f46 100644 --- a/util/generic/ymath.cpp +++ b/util/generic/ymath.cpp @@ -1,13 +1,13 @@ #include "ymath.h" -double Exp2(double x) { - return pow(2.0, x); -} - -float Exp2f(float x) { - return powf(2.0f, x); -} - +double Exp2(double x) { + return pow(2.0, x); +} + +float Exp2f(float x) { + return powf(2.0f, x); +} + #ifdef _MSC_VER double Erf(double x) { |