wreduce: fix warning for deprecated IdString::in(pool<IdString>)

This commit is contained in:
Emil J. Tywoniak 2025-01-30 12:01:30 +01:00
parent da5c20dcfb
commit c2691207df
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ struct WreduceWorker
{
bool did_something = false;
if (!cell->type.in(config->supported_cell_types))
if (!config->supported_cell_types.count(cell->type))
return;
if (cell->type.in(ID($mux), ID($pmux)))