tidy: drop stale ACollector comments

This commit is contained in:
Roland Conybeare 2026-05-02 13:58:22 -04:00
commit 05a6aa9425
3 changed files with 0 additions and 6 deletions

View file

@ -203,7 +203,6 @@ namespace xo {
DArray *
DArray::array(obj<AAllocator> mm, Args... args)
{
//obj<ACollector> gc = mm.try_to_facet<ACollector>();
DArray * result = _empty(mm, sizeof...(args));
if (result) {
detail::do_array_push_back(result, mm, args...);

View file

@ -4,7 +4,6 @@
**/
#include "DArray.hpp"
//#include "gc/RCollector_aux.hpp"
#include <xo/printable2/Printable.hpp>
#include <xo/facet/FacetRegistry.hpp>
#include <xo/indentlog/print/pretty.hpp>
@ -16,7 +15,6 @@ namespace xo {
using xo::print::APrintable;
using xo::facet::FacetRegistry;
using xo::mm::AGCObject;
//using xo::mm::mm_do_assign;
using xo::facet::typeseq;
namespace scm {

View file

@ -148,7 +148,6 @@ namespace xo {
const DString * k1 = DString::from_cstr(mm, key_cstr);
if (k1) {
//obj<ACollector> gc = mm.try_to_facet<ACollector>();
return this->try_upsert(mm, std::make_pair(k1, value));
}
@ -181,8 +180,6 @@ namespace xo {
bool
DDictionary::upsert(obj<AAllocator> mm, const pair_type & kv_pair)
{
//obj<ACollector> gc = mm.try_to_facet<ACollector>();
if (this->try_update(mm, kv_pair))
return true;