aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/codecs/static/static.cpp
diff options
context:
space:
mode:
authorVlad Yaroslavlev <vladon@vladon.com>2022-02-10 16:46:23 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:23 +0300
commit706b83ed7de5a473436620367af31fc0ceecde07 (patch)
tree103305d30dec77e8f6367753367f59b3cd68f9f1 /library/cpp/codecs/static/static.cpp
parent918e8a1574070d0ec733f0b76cfad8f8892ad2e5 (diff)
downloadydb-706b83ed7de5a473436620367af31fc0ceecde07.tar.gz
Restoring authorship annotation for Vlad Yaroslavlev <vladon@vladon.com>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/codecs/static/static.cpp')
-rw-r--r--library/cpp/codecs/static/static.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/codecs/static/static.cpp b/library/cpp/codecs/static/static.cpp
index 44a07dd73a..2c84c90d9c 100644
--- a/library/cpp/codecs/static/static.cpp
+++ b/library/cpp/codecs/static/static.cpp
@@ -50,7 +50,7 @@ namespace NCodecs {
return result;
}
- TString SaveCodecInfoToString(const TStaticCodecInfo& info) {
+ TString SaveCodecInfoToString(const TStaticCodecInfo& info) {
TStringStream s;
SaveCodecInfoToStream(s, info);
return s.Str();
@@ -61,7 +61,7 @@ namespace NCodecs {
return LoadCodecInfoFromStream(m);
}
- TString FormatCodecInfo(const TStaticCodecInfo& ci) {
+ TString FormatCodecInfo(const TStaticCodecInfo& ci) {
TStringBuilder s;
s << "codec name: " << ci.GetDebugInfo().GetCodecName() << Endl;
s << "codec hash: " << HexWriteScalar(ci.GetDebugInfo().GetStoredCodecHash()) << Endl;
@@ -77,7 +77,7 @@ namespace NCodecs {
return s;
}
- TString LoadStringFromArchive(const ui8* begin, size_t size) {
+ TString LoadStringFromArchive(const ui8* begin, size_t size) {
TArchiveReader ar(TBlob::NoCopy(begin, size));
Y_VERIFY(ar.Count() == 1, "invalid number of entries");
auto blob = ar.ObjectBlobByKey(ar.KeyByIndex(0));