diff options
author | vtyulb <vtyulb@yandex-team.ru> | 2022-02-10 16:50:24 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:24 +0300 |
commit | 5f3d238c7ac51f3b9d8b84e7b062bba37bd5fe2c (patch) | |
tree | c0564448033e99d0849f5d666c7d89f88992315f /library | |
parent | ef1186a3ef541b1a1c08c06e9f826d45dddce8b0 (diff) | |
download | ydb-5f3d238c7ac51f3b9d8b84e7b062bba37bd5fe2c.tar.gz |
Restoring authorship annotation for <vtyulb@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library')
-rw-r--r-- | library/cpp/json/fast_sax/parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/json/fast_sax/parser.h b/library/cpp/json/fast_sax/parser.h index b5f031dd9e..f52839ba1a 100644 --- a/library/cpp/json/fast_sax/parser.h +++ b/library/cpp/json/fast_sax/parser.h @@ -6,7 +6,7 @@ namespace NJson { bool ReadJsonFast(TStringBuf in, TJsonCallbacks* callbacks); inline bool ValidateJsonFast(TStringBuf in, bool throwOnError = false) { - Y_ASSERT(false); // this method is broken, see details in IGNIETFERRO-1243. Use NJson::ValidateJson instead, or fix this one before using + Y_ASSERT(false); // this method is broken, see details in IGNIETFERRO-1243. Use NJson::ValidateJson instead, or fix this one before using TJsonCallbacks c(throwOnError); return ReadJsonFast(in, &c); } |