diff --git a/src/library/blast/state.h b/src/library/blast/state.h index e42f348ee..019bbd112 100644 --- a/src/library/blast/state.h +++ b/src/library/blast/state.h @@ -251,7 +251,7 @@ public: hypothesis const * get_hypothesis_decl(expr const & h) const { return get_hypothesis_decl(href_index(h)); } void for_each_hypothesis(std::function const & fn) const { m_branch.m_hyp_decls.for_each(fn); } - optional find_active_hypothesis(std::function const & fn) const { // NOLINT + optional find_active_hypothesis(std::function const & fn) const { // NOLINT return m_branch.m_active.find_if([&](hypothesis_idx hidx) { return fn(hidx, *get_hypothesis_decl(hidx)); });