summaryrefslogtreecommitdiffstats
path: root/library/cpp/scheme/scimpl_json_read.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/scheme/scimpl_json_read.cpp')
-rw-r--r--library/cpp/scheme/scimpl_json_read.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/scheme/scimpl_json_read.cpp b/library/cpp/scheme/scimpl_json_read.cpp
index eb4f5bc56c3..8a29cc77391 100644
--- a/library/cpp/scheme/scimpl_json_read.cpp
+++ b/library/cpp/scheme/scimpl_json_read.cpp
@@ -186,7 +186,7 @@ namespace NSc {
if (cfg.RelaxedJson) {
return NJson::ReadJsonFast(json, &d);
} else {
- TMemoryInput min(json.data(), json.size());
+ TMemoryInput min(json.data(), json.size());
return NJson::ReadJson(&min, &cfg, &d);
}
}