aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/map.h
diff options
context:
space:
mode:
authormowgli <mowgli@yandex-team.ru>2022-02-10 16:49:25 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:25 +0300
commit56c39b3cf908e7202b1f7551a1653681e8015607 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /util/generic/map.h
parent89afbbe4ca0e02e386dd4df08f7945f190dc1b84 (diff)
downloadydb-56c39b3cf908e7202b1f7551a1653681e8015607.tar.gz
Restoring authorship annotation for <mowgli@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/generic/map.h')
-rw-r--r--util/generic/map.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/util/generic/map.h b/util/generic/map.h
index 56449b442a..b5001b56c0 100644
--- a/util/generic/map.h
+++ b/util/generic/map.h
@@ -18,10 +18,10 @@ class TMap: public std::map<K, V, Less, TReboundAllocator<A, std::pair<const K,
public:
using TBase::TBase;
- inline explicit operator bool() const noexcept {
- return !this->empty();
- }
-
+ inline explicit operator bool() const noexcept {
+ return !this->empty();
+ }
+
inline bool contains(const K& key) const {
return this->find(key) != this->end();
}
@@ -34,9 +34,9 @@ class TMultiMap: public std::multimap<K, V, Less, TReboundAllocator<A, std::pair
public:
using TBase::TBase;
- inline explicit operator bool() const noexcept {
- return !this->empty();
- }
+ inline explicit operator bool() const noexcept {
+ return !this->empty();
+ }
inline bool contains(const K& key) const {
return this->find(key) != this->end();