diff options
author | vtyulb <vtyulb@yandex-team.ru> | 2022-02-10 16:50:25 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:25 +0300 |
commit | b55b756020eeb596f7f92ac29e65957273abbb2c (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/json | |
parent | 5f3d238c7ac51f3b9d8b84e7b062bba37bd5fe2c (diff) | |
download | ydb-b55b756020eeb596f7f92ac29e65957273abbb2c.tar.gz |
Restoring authorship annotation for <vtyulb@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/json')
-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 f52839ba1a..b5f031dd9e 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); } |