tidy: drop stale ACollector comments

This commit is contained in:
Roland Conybeare 2026-05-02 13:58:22 -04:00
commit 6068da02af
4 changed files with 0 additions and 9 deletions

View file

@ -201,8 +201,6 @@ namespace xo {
obj<AAllocator,DArena> mm(&parser_alloc);
DArray * argl_2x = DArray::_empty(mm, 2 * argl_->capacity());
//auto gc = obj<AAllocator>(mm).try_to_facet<ACollector>();
for (DArray::size_type i = 0, n = argl_->size(); i < n; ++i) {
// TODO: prefer non-bounds-checked access here
argl_2x->push_back(mm, argl_->at(i));
@ -212,8 +210,6 @@ namespace xo {
this->argl_ = argl_2x;
}
//auto gc = expr_alloc.try_to_facet<ACollector>();
this->argl_->push_back(expr_alloc, var_o);
}