diff options
author | halin-george <[email protected]> | 2022-02-10 16:50:07 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:50:07 +0300 |
commit | 811c91d683d6123a2aa69baa10b30184f5e1204d (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/yt/yson_string/string.cpp | |
parent | 7c7a0655bcf00449b1fcacc2c658cc4d5c3aca7b (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/yt/yson_string/string.cpp')
-rw-r--r-- | library/cpp/yt/yson_string/string.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/yt/yson_string/string.cpp b/library/cpp/yt/yson_string/string.cpp index b6880e1e033..99d45e86169 100644 --- a/library/cpp/yt/yson_string/string.cpp +++ b/library/cpp/yt/yson_string/string.cpp @@ -34,10 +34,10 @@ TYsonStringBuf::TYsonStringBuf(const TString& data, EYsonType type) TYsonStringBuf::TYsonStringBuf(TStringBuf data, EYsonType type) : Data_(data) - , Type_(type) + , Type_(type) , Null_(false) -{ } - +{ } + TYsonStringBuf::TYsonStringBuf(const char* data, EYsonType type) : TYsonStringBuf(TStringBuf(data), type) { } |