diff options
author | melkov <melkov@yandex-team.ru> | 2022-02-10 16:48:14 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:14 +0300 |
commit | 2c532b38e6aeb4fd88531027c7335690fd34c4e5 (patch) | |
tree | b222e5ac2e2e98872661c51ccceee5da0d291e13 /library/cpp/packedtypes/packedfloat.cpp | |
parent | 438546c8737d5c1fdeb31157dcf999717d930eec (diff) | |
download | ydb-2c532b38e6aeb4fd88531027c7335690fd34c4e5.tar.gz |
Restoring authorship annotation for <melkov@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/packedtypes/packedfloat.cpp')
-rw-r--r-- | library/cpp/packedtypes/packedfloat.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/library/cpp/packedtypes/packedfloat.cpp b/library/cpp/packedtypes/packedfloat.cpp index d965d5a290..6039d78969 100644 --- a/library/cpp/packedtypes/packedfloat.cpp +++ b/library/cpp/packedtypes/packedfloat.cpp @@ -1,18 +1,18 @@ -#include "packedfloat.h" - -#include <util/stream/output.h> - +#include "packedfloat.h" + +#include <util/stream/output.h> + #define OUT_IMPL(T) \ template <> \ void Out<T>(IOutputStream & os, TTypeTraits<T>::TFuncParam val) { \ os << (float)val; \ - } - -OUT_IMPL(f16) -OUT_IMPL(uf16) -OUT_IMPL(f8) -OUT_IMPL(uf8) -OUT_IMPL(f8d) -OUT_IMPL(uf8d) + } + +OUT_IMPL(f16) +OUT_IMPL(uf16) +OUT_IMPL(f8) +OUT_IMPL(uf8) +OUT_IMPL(f8d) +OUT_IMPL(uf8d) #undef OUT_IMPL |