aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/messagebus/vector_swaps.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 /library/cpp/messagebus/vector_swaps.h
parent8cbc307de0221f84c80c42dcbe07d40727537e2c (diff)
downloadydb-9abfb1a53b7f7b791444d1378e645d8fad9b06ed.tar.gz
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/messagebus/vector_swaps.h')
-rw-r--r--library/cpp/messagebus/vector_swaps.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/library/cpp/messagebus/vector_swaps.h b/library/cpp/messagebus/vector_swaps.h
index 2edcd99114..b920bcf03e 100644
--- a/library/cpp/messagebus/vector_swaps.h
+++ b/library/cpp/messagebus/vector_swaps.h
@@ -15,8 +15,8 @@ private:
T* EndOfStorage;
void StateCheck() {
- Y_ASSERT(Start <= Finish);
- Y_ASSERT(Finish <= EndOfStorage);
+ Y_ASSERT(Start <= Finish);
+ Y_ASSERT(Finish <= EndOfStorage);
}
public:
@@ -69,12 +69,12 @@ public:
}
T& operator[](size_t index) {
- Y_ASSERT(index < size());
+ Y_ASSERT(index < size());
return Start[index];
}
const T& operator[](size_t index) const {
- Y_ASSERT(index < size());
+ Y_ASSERT(index < size());
return Start[index];
}
@@ -122,7 +122,7 @@ public:
size_t newCapacity = FastClp2(n);
TVectorSwaps<T> tmp;
tmp.Start = (T*)malloc(sizeof(T) * newCapacity);
- Y_VERIFY(!!tmp.Start);
+ Y_VERIFY(!!tmp.Start);
tmp.EndOfStorage = tmp.Start + newCapacity;
@@ -146,7 +146,7 @@ public:
template <class TIterator>
void insert(iterator pos, TIterator b, TIterator e) {
- Y_VERIFY(pos == end(), "TODO: only insert at the end is implemented");
+ Y_VERIFY(pos == end(), "TODO: only insert at the end is implemented");
size_t count = e - b;