aboutsummaryrefslogtreecommitdiffstats
path: root/util/str_stl.h
diff options
context:
space:
mode:
authorkrock21 <krock21@yandex-team.ru>2022-02-10 16:46:02 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:02 +0300
commit4aae166b5d23fd02653919f43e2015cd636fa6fd (patch)
tree70e52225c1ede3476f358bc4699197ace987d46d /util/str_stl.h
parent9ab30620977aa96ae9e9da959e2f7e1370cb796d (diff)
downloadydb-4aae166b5d23fd02653919f43e2015cd636fa6fd.tar.gz
Restoring authorship annotation for <krock21@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/str_stl.h')
-rw-r--r--util/str_stl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/str_stl.h b/util/str_stl.h
index f1e137181d..4b98c82ee1 100644
--- a/util/str_stl.h
+++ b/util/str_stl.h
@@ -23,8 +23,8 @@ namespace std {
bool operator()(const char* x, const char* y) const {
return strcmp(x, y) == 0;
}
- bool operator()(const char* x, const TStringBuf y) const {
- return strlen(x) == y.size() && memcmp(x, y.data(), y.size()) == 0;
+ bool operator()(const char* x, const TStringBuf y) const {
+ return strlen(x) == y.size() && memcmp(x, y.data(), y.size()) == 0;
}
using is_transparent = void;
};