aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/ymath.cpp
diff options
context:
space:
mode:
authoresgv <esgv@yandex-team.ru>2022-02-10 16:50:24 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:24 +0300
commit555c14603bb6a3b676b9ace65d6e5a8b35a32fee (patch)
treefc3aad5265a334515cb93f346bd7addc6f9bf52a /util/generic/ymath.cpp
parentbeb63ece3a6872dfbe113104f524ab6fdbec0adc (diff)
downloadydb-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.cpp16
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) {