aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/intrlist.h
diff options
context:
space:
mode:
authoryazevnul <yazevnul@yandex-team.ru>2022-02-10 16:46:46 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:46 +0300
commit8cbc307de0221f84c80c42dcbe07d40727537e2c (patch)
tree625d5a673015d1df891e051033e9fcde5c7be4e5 /util/generic/intrlist.h
parent30d1ef3941e0dc835be7609de5ebee66958f215a (diff)
downloadydb-8cbc307de0221f84c80c42dcbe07d40727537e2c.tar.gz
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/generic/intrlist.h')
-rw-r--r--util/generic/intrlist.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/util/generic/intrlist.h b/util/generic/intrlist.h
index b5d3f2051b..93112c37f7 100644
--- a/util/generic/intrlist.h
+++ b/util/generic/intrlist.h
@@ -332,11 +332,11 @@ public:
TIntrusiveList temp;
temp.Append(right);
- Y_ASSERT(right.Empty());
+ Y_ASSERT(right.Empty());
right.Append(*this);
- Y_ASSERT(this->Empty());
+ Y_ASSERT(this->Empty());
this->Append(temp);
- Y_ASSERT(temp.Empty());
+ Y_ASSERT(temp.Empty());
}
public:
@@ -823,12 +823,12 @@ public:
}
inline T* Front() noexcept {
- Y_ASSERT(Begin_);
+ Y_ASSERT(Begin_);
return Begin_->Node();
}
inline const T* Front() const noexcept {
- Y_ASSERT(Begin_);
+ Y_ASSERT(Begin_);
return Begin_->Node();
}
@@ -838,7 +838,7 @@ public:
}
inline T* PopFront() noexcept {
- Y_ASSERT(Begin_);
+ Y_ASSERT(Begin_);
TListItem* const ret = Begin_;
Begin_ = Begin_->Next();