aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/scheme/scheme.cpp
diff options
context:
space:
mode:
authoreeight <eeight@yandex-team.ru>2022-02-10 16:46:18 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:18 +0300
commit475c0a46f28166e83fd263badc7546377cddcabe (patch)
tree39c5a49b8aaad78fe390b6f1f2886bdbda40f3e7 /library/cpp/scheme/scheme.cpp
parenta6e0145a095c7bb3770d6e07aee301de5c73f96e (diff)
downloadydb-475c0a46f28166e83fd263badc7546377cddcabe.tar.gz
Restoring authorship annotation for <eeight@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/scheme/scheme.cpp')
-rw-r--r--library/cpp/scheme/scheme.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/scheme/scheme.cpp b/library/cpp/scheme/scheme.cpp
index 3efd116d4f..3eb2e6c46e 100644
--- a/library/cpp/scheme/scheme.cpp
+++ b/library/cpp/scheme/scheme.cpp
@@ -2,7 +2,7 @@
#include "scimpl_private.h"
#include <util/generic/algorithm.h>
-#include <util/string/cast.h>
+#include <util/string/cast.h>
namespace NSc {
TStringBufs& TValue::DictKeys(TStringBufs& vs, bool sorted) const {
@@ -251,10 +251,10 @@ namespace NSc {
}
if (coreA.IsString()) {
- std::string_view strA = coreA.String;
- std::string_view strB = coreB.String;
+ std::string_view strA = coreA.String;
+ std::string_view strB = coreB.String;
- if (strA != strB) {
+ if (strA != strB) {
return false;
}
} else if (coreA.IsArray()) {
@@ -507,7 +507,7 @@ namespace NSc {
namespace NPrivate {
int CompareStr(const NSc::TValue& a, TStringBuf b) {
- return a.GetString().compare(b);
+ return a.GetString().compare(b);
}
int CompareInt(const NSc::TValue& a, i64 r) {