diff options
author | Vasily Gerasimov <UgnineSirdis@gmail.com> | 2022-02-10 16:49:10 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:10 +0300 |
commit | 1eb755fbca92172a6aec2f57371b2b3a19dfab43 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/scheme/scimpl_defs.h | |
parent | 6cdc8f140213c595e4ad38bc3d97fcef1146b8c3 (diff) | |
download | ydb-1eb755fbca92172a6aec2f57371b2b3a19dfab43.tar.gz |
Restoring authorship annotation for Vasily Gerasimov <UgnineSirdis@gmail.com>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/scheme/scimpl_defs.h')
-rw-r--r-- | library/cpp/scheme/scimpl_defs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/scheme/scimpl_defs.h b/library/cpp/scheme/scimpl_defs.h index 2c02806fb9..f3dd66b437 100644 --- a/library/cpp/scheme/scimpl_defs.h +++ b/library/cpp/scheme/scimpl_defs.h @@ -74,7 +74,7 @@ namespace NSc { JO_PARSER_STRICT_JSON = 16, // strict standard json JO_PARSER_STRICT_UTF8 = 32, // strict utf8 JO_PARSER_DISALLOW_COMMENTS = 64, - JO_PARSER_DISALLOW_DUPLICATE_KEYS = 128, + JO_PARSER_DISALLOW_DUPLICATE_KEYS = 128, JO_PRETTY = JO_FORMAT | JO_SORT_KEYS, // pretty print json JO_SAFE = JO_SKIP_UNSAFE | JO_SORT_KEYS, // ensure standard parser-safe json @@ -85,8 +85,8 @@ namespace NSc { public: TJsonOpts(int opts = JO_SORT_KEYS) - : Opts(opts) - , SortKeys(opts & JO_SORT_KEYS) + : Opts(opts) + , SortKeys(opts & JO_SORT_KEYS) , FormatJson(opts & JO_FORMAT) , StringPolicy((opts & JO_SKIP_UNSAFE) ? StringPolicySafe : StringPolicyUnsafe) { @@ -97,7 +97,7 @@ namespace NSc { public: bool RelaxedJson = false; - int Opts = 0; + int Opts = 0; bool SortKeys = true; bool FormatJson = false; |