fixup! shift much of the internal use of ID* identifier pointers over to IDPtr objects

This commit is contained in:
Vern Paxson 2025-09-03 11:09:54 -07:00
parent 7397dc6568
commit a6f9d69c91
7 changed files with 12 additions and 12 deletions

View file

@ -82,7 +82,7 @@ void CPPCompile::GenInitStmt(const InitStmt* init) {
auto type_type = TypeType(t);
auto type_ind = GenTypeName(t);
if ( ! locals.contains(aggr.get()) ) {
if ( ! locals.contains(aggr) ) {
// fprintf(stderr, "aggregate %s unused\n", obj_desc(aggr.get()).c_str());
continue;
}