diff options
author | anokhovd <anokhovd@yandex-team.com> | 2024-11-08 13:36:22 +0300 |
---|---|---|
committer | anokhovd <anokhovd@yandex-team.com> | 2024-11-08 13:53:07 +0300 |
commit | 56d11496a02e691dd1c038761adec9c5f60d2c46 (patch) | |
tree | f7bbe68710f3d644ac841ebb06f69dc0e8c1c755 /library/cpp/blockcodecs/core/codecs.h | |
parent | 7482ac26178d2d940d6faa4dcf8bb3f05ad244c5 (diff) | |
download | ydb-56d11496a02e691dd1c038761adec9c5f60d2c46.tar.gz |
fix ci base image build
change base скрипт
commit_hash:abea0d7a031fd7bbbb1e754495e2c482b073be62
Diffstat (limited to 'library/cpp/blockcodecs/core/codecs.h')
-rw-r--r-- | library/cpp/blockcodecs/core/codecs.h | 11 |
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 { }; |