diff options
author | alexeykruglov <alexeykruglov@yandex-team.ru> | 2022-02-10 16:45:38 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:38 +0300 |
commit | 06361c53c4ca58f57007ea73fc399fc25664f13c (patch) | |
tree | f5df3a0e589db8e1e30dca616e6fa2d10bf3c64a /library/cpp | |
parent | 94e51c602b555459333b3c6ae92476c424c930bc (diff) | |
download | ydb-06361c53c4ca58f57007ea73fc399fc25664f13c.tar.gz |
Restoring authorship annotation for <alexeykruglov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/http/io/chunk.cpp | 2 | ||||
-rw-r--r-- | library/cpp/scheme/scheme.cpp | 2 | ||||
-rw-r--r-- | library/cpp/scheme/tests/ut/scheme_merge_ut.cpp | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/http/io/chunk.cpp b/library/cpp/http/io/chunk.cpp index 6975d9eac1..3f5ae7ca97 100644 --- a/library/cpp/http/io/chunk.cpp +++ b/library/cpp/http/io/chunk.cpp @@ -204,7 +204,7 @@ public: inline void Finish() { Slave_->Write("0\r\n\r\n", 5); - + Flush(); } diff --git a/library/cpp/scheme/scheme.cpp b/library/cpp/scheme/scheme.cpp index 3efd116d4f..abace4d6cb 100644 --- a/library/cpp/scheme/scheme.cpp +++ b/library/cpp/scheme/scheme.cpp @@ -43,7 +43,7 @@ namespace NSc { TValue& TValue::ReverseMergeJson(TStringBuf data) { return ReverseMerge(FromJson(data)); } - + bool TValue::MergeUpdateJson(TValue& v, TStringBuf data) { NSc::TValue m; if (!FromJson(m, data)) { diff --git a/library/cpp/scheme/tests/ut/scheme_merge_ut.cpp b/library/cpp/scheme/tests/ut/scheme_merge_ut.cpp index 2a06cf110d..fe2bd6e43c 100644 --- a/library/cpp/scheme/tests/ut/scheme_merge_ut.cpp +++ b/library/cpp/scheme/tests/ut/scheme_merge_ut.cpp @@ -24,8 +24,8 @@ Y_UNIT_TEST_SUITE(TSchemeMergeTest) { DoTestReverseMerge("null", "[b]", "[b]"); DoTestReverseMerge("[a]", "[b]", "[a]"); DoTestReverseMerge("{x:null}", "{x:b}", "{x:b}"); - } - + } + Y_UNIT_TEST(TestMerge) { TStringBuf data = "{ a : [ { b : 1, d : { e : -1.e5 } }, { f : 0, g : [ h, i ] } ] }"; NSc::TValue v = NSc::TValue::FromJson(data); |