We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f28437 commit 3c78a47Copy full SHA for 3c78a47
libc/src/__support/blockstore.h
@@ -189,9 +189,9 @@ class BlockStore {
189
return Iterator(current, fill_count);
190
}
191
192
- // Removes and the element at pos, then moves all the objects after back by
193
- // one to fill the hole. It's assumed that pos is a valid iterator to
194
- // somewhere in this block_store.
+ // Removes the element at pos, then moves all the objects after back by one to
+ // fill the hole. It's assumed that pos is a valid iterator to somewhere in
+ // this block_store.
195
LIBC_INLINE void erase(Iterator pos) {
196
const Iterator last_item = Iterator(current, fill_count);
197
if (pos == last_item) {
0 commit comments