aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/map.h
diff options
context:
space:
mode:
authoreeight <eeight@yandex-team.ru>2022-02-10 16:46:19 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:19 +0300
commitbd085aee9b4f7a0bee302ce687964ffb7098f986 (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /util/generic/map.h
parent475c0a46f28166e83fd263badc7546377cddcabe (diff)
downloadydb-bd085aee9b4f7a0bee302ce687964ffb7098f986.tar.gz
Restoring authorship annotation for <eeight@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/generic/map.h')
-rw-r--r--util/generic/map.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/util/generic/map.h b/util/generic/map.h
index 8a1533755d..b5001b56c0 100644
--- a/util/generic/map.h
+++ b/util/generic/map.h
@@ -22,9 +22,9 @@ public:
return !this->empty();
}
- inline bool contains(const K& key) const {
- return this->find(key) != this->end();
- }
+ inline bool contains(const K& key) const {
+ return this->find(key) != this->end();
+ }
};
template <class K, class V, class Less, class A>
@@ -38,7 +38,7 @@ public:
return !this->empty();
}
- inline bool contains(const K& key) const {
- return this->find(key) != this->end();
- }
+ inline bool contains(const K& key) const {
+ return this->find(key) != this->end();
+ }
};