diff --git a/source/cfa.h b/source/cfa.h index 0d09014c..17a4ea5b 100644 --- a/source/cfa.h +++ b/source/cfa.h @@ -127,7 +127,7 @@ class CFA { template bool CFA::FindInWorkList(const std::vector& work_list, uint32_t id) { - for (const auto& b : work_list) { + for (auto& b : work_list) { if (b.block->id() == id) return true; } return false;