diff options
author | esgv <esgv@yandex-team.ru> | 2022-02-10 16:50:24 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:24 +0300 |
commit | 555c14603bb6a3b676b9ace65d6e5a8b35a32fee (patch) | |
tree | fc3aad5265a334515cb93f346bd7addc6f9bf52a /util/generic/ymath.cpp | |
parent | beb63ece3a6872dfbe113104f524ab6fdbec0adc (diff) | |
download | ydb-555c14603bb6a3b676b9ace65d6e5a8b35a32fee.tar.gz |
Restoring authorship annotation for <esgv@yandex-team.ru>. Commit 1 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 31270728f4..b2846b2f10 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) { |