aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/intrlist.h
diff options
context:
space:
mode:
authoryazevnul <yazevnul@yandex-team.ru>2022-02-10 16:46:48 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:48 +0300
commit9abfb1a53b7f7b791444d1378e645d8fad9b06ed (patch)
tree49e222ea1c5804306084bb3ae065bb702625360f /util/generic/intrlist.h
parent8cbc307de0221f84c80c42dcbe07d40727537e2c (diff)
downloadydb-9abfb1a53b7f7b791444d1378e645d8fad9b06ed.tar.gz
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 2 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 93112c37f7..b5d3f2051b 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();