summaryrefslogtreecommitdiffstats
path: root/library/cpp/json/fuzzy_test
diff options
context:
space:
mode:
authornae202 <[email protected]>2025-09-23 07:48:35 +0300
committernae202 <[email protected]>2025-09-23 08:03:21 +0300
commit63774bc851bb76e24f369ef4e0328e5f05edbb4b (patch)
treed3226ed9a5f200097949f6001a7e3183aff7adfa /library/cpp/json/fuzzy_test
parentf4cbf746a0b6649479cfb305eceababced0ac10a (diff)
Style fix
commit_hash:d506e2a0f2770f3662449a3711e976499eb9ccbb
Diffstat (limited to 'library/cpp/json/fuzzy_test')
-rw-r--r--library/cpp/json/fuzzy_test/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/json/fuzzy_test/main.cpp b/library/cpp/json/fuzzy_test/main.cpp
index 29a53aac142..afa410cd6d9 100644
--- a/library/cpp/json/fuzzy_test/main.cpp
+++ b/library/cpp/json/fuzzy_test/main.cpp
@@ -10,20 +10,20 @@ extern "C" int LLVMFuzzerTestOneInput(const ui8* data, size_t size) {
NJson::TJsonValue value;
NJson::ReadJsonFastTree(json, &value, true);
} catch (...) {
- //Cout << json << " -> " << CurrentExceptionMessage() << Endl;
+ // Cout << json << " -> " << CurrentExceptionMessage() << Endl;
}
try {
NJson::TJsonCallbacks cb;
NJson::ReadJsonFast(json, &cb);
} catch (...) {
- //Cout << json << " -> " << CurrentExceptionMessage() << Endl;
+ // Cout << json << " -> " << CurrentExceptionMessage() << Endl;
}
try {
NJson::ValidateJson(json);
} catch (...) {
- //Cout << json << " -> " << CurrentExceptionMessage() << Endl;
+ // Cout << json << " -> " << CurrentExceptionMessage() << Endl;
}
return 0;