diff options
author | kelarev <[email protected]> | 2022-02-10 16:50:25 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:50:25 +0300 |
commit | 3f71754853b8ed102c9371ac075aa81274a39b9b (patch) | |
tree | fabf3a51c2c43e55573ec287c5d8a17a2206cf07 /library/cpp/json/writer/json_value.cpp | |
parent | 054d233fbefc50c1a88d0e4092c192bfbec99826 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/json/writer/json_value.cpp')
-rw-r--r-- | library/cpp/json/writer/json_value.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/json/writer/json_value.cpp b/library/cpp/json/writer/json_value.cpp index c61e8d1dc43..a21a2f1cc9e 100644 --- a/library/cpp/json/writer/json_value.cpp +++ b/library/cpp/json/writer/json_value.cpp @@ -869,8 +869,8 @@ namespace NJson { return true; } return false; - } - + } + bool TJsonValue::SetValueByPath(const TStringBuf path, TJsonValue&& value, char delimiter) { TJsonValue* const ptr = GetValuePtrByPath<true>(this, path, delimiter); if (ptr) { @@ -878,8 +878,8 @@ namespace NJson { return true; } return false; - } - + } + const TJsonValue* TJsonValue::GetValueByPath(const TStringBuf key, char delim) const noexcept { return GetValuePtrByPath<false>(this, key, delim); } |