aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/queue.h
diff options
context:
space:
mode:
authorfippo <fippo@yandex-team.ru>2022-02-10 16:50:08 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:08 +0300
commit3e57c324d47a3a202cb3c5a9648d2f92103d5213 (patch)
tree6913479b0d0b22ec99bbba7c96f2f930d9095600 /util/generic/queue.h
parentbebbbda5c5ff4ec70d301ac897eb8d6c8da7a9a4 (diff)
downloadydb-3e57c324d47a3a202cb3c5a9648d2f92103d5213.tar.gz
Restoring authorship annotation for <fippo@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/generic/queue.h')
-rw-r--r--util/generic/queue.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/util/generic/queue.h b/util/generic/queue.h
index f5959f68f2..64d05a9efe 100644
--- a/util/generic/queue.h
+++ b/util/generic/queue.h
@@ -23,14 +23,14 @@ public:
inline void clear() {
this->c.clear();
}
-
- inline S& Container() {
- return this->c;
- }
-
- inline const S& Container() const {
- return this->c;
- }
+
+ inline S& Container() {
+ return this->c;
+ }
+
+ inline const S& Container() const {
+ return this->c;
+ }
};
template <class T, class S, class C>
@@ -48,11 +48,11 @@ public:
this->c.clear();
}
- inline S& Container() {
- return this->c;
- }
-
- inline const S& Container() const {
- return this->c;
- }
+ inline S& Container() {
+ return this->c;
+ }
+
+ inline const S& Container() const {
+ return this->c;
+ }
};