diff options
author | breakneck <breakneck@yandex-team.ru> | 2022-02-10 16:47:58 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:58 +0300 |
commit | f860932520ce9bc8540a3c19e84c0109c3437dc5 (patch) | |
tree | c0748b5dcbade83af788c0abfa89c0383d6b779c /library/cpp/packedtypes | |
parent | e2021f9a0e54d13b7c48796318b13b66dc625e74 (diff) | |
download | ydb-f860932520ce9bc8540a3c19e84c0109c3437dc5.tar.gz |
Restoring authorship annotation for <breakneck@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/packedtypes')
-rw-r--r-- | library/cpp/packedtypes/packed.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/packedtypes/packed.h b/library/cpp/packedtypes/packed.h index d5d617613e..88cff26ae2 100644 --- a/library/cpp/packedtypes/packed.h +++ b/library/cpp/packedtypes/packed.h @@ -52,15 +52,15 @@ struct TZCMemoryInput_traits { return get<ui8>(in); } - static ui16 Y_FORCE_INLINE get_16(TZCMemoryInput& in) { + static ui16 Y_FORCE_INLINE get_16(TZCMemoryInput& in) { return get<ui16>(in); } - static ui32 Y_FORCE_INLINE get_32(TZCMemoryInput& in) { + static ui32 Y_FORCE_INLINE get_32(TZCMemoryInput& in) { return get<ui32>(in); } - static int Y_FORCE_INLINE is_good(TZCMemoryInput&) { + static int Y_FORCE_INLINE is_good(TZCMemoryInput&) { return 1; } }; |