Remove unused local in Inliner::Analyzer()

This commit is contained in:
Jon Siwek 2021-01-06 22:13:31 -08:00
parent 64631a2d9f
commit 10ae10d4e4

View file

@ -108,9 +108,6 @@ void Inliner::Analyze()
}
}
// Functions that are candidates for inlining.
std::unordered_set<FuncInfo*> candidates;
for ( auto& f : funcs )
// Candidates are non-event, non-hook, non-recursive
// functions ... that don't use lambdas or when's,