diff --git a/src/ast/simplifiers/model_reconstruction_trail.h b/src/ast/simplifiers/model_reconstruction_trail.h index 96d27e4c4..4aa8a54fd 100644 --- a/src/ast/simplifiers/model_reconstruction_trail.h +++ b/src/ast/simplifiers/model_reconstruction_trail.h @@ -68,7 +68,7 @@ class model_reconstruction_trail { } bool intersects(ast_mark const& free_vars, vector const& added) { - return std::any_of(added.begin(), added.end(), [&](dependent_expr const& d) { return intersects(free_vars, d); }); + return any_of(added, [&](dependent_expr const& d) { return intersects(free_vars, d); }); } public: