aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authoranokhovd <anokhovd@yandex-team.com>2024-11-08 13:36:22 +0300
committeranokhovd <anokhovd@yandex-team.com>2024-11-08 13:53:07 +0300
commit56d11496a02e691dd1c038761adec9c5f60d2c46 (patch)
treef7bbe68710f3d644ac841ebb06f69dc0e8c1c755 /library/cpp
parent7482ac26178d2d940d6faa4dcf8bb3f05ad244c5 (diff)
downloadydb-56d11496a02e691dd1c038761adec9c5f60d2c46.tar.gz
fix ci base image build
change base скрипт commit_hash:abea0d7a031fd7bbbb1e754495e2c482b073be62
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/blockcodecs/core/codecs.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/library/cpp/blockcodecs/core/codecs.h b/library/cpp/blockcodecs/core/codecs.h
index 6512abddef..61efc04744 100644
--- a/library/cpp/blockcodecs/core/codecs.h
+++ b/library/cpp/blockcodecs/core/codecs.h
@@ -26,13 +26,14 @@ namespace NBlockCodecs {
{
}
- template <>
- inline TData(const TString& t)
- : TStringBuf((const char*)t.data(), t.size())
- {
- }
};
+ template <>
+ inline TData::TData(const TString& t)
+ : TStringBuf((const char*)t.data(), t.size())
+ {
+ }
+
struct TCodecError: public yexception {
};