chore(library/tactic/expr_to_tactic): fix compilation warning
This commit is contained in:
parent
6107da05db
commit
61f333d2c2
1 changed files with 1 additions and 1 deletions
|
@ -273,7 +273,7 @@ void register_unary_num_tac(name const & n, std::function<tactic(tactic const &,
|
|||
}
|
||||
|
||||
void register_num_tac(name const & n, std::function<tactic(unsigned k)> f) {
|
||||
register_tac(n, [=](type_checker & tc, elaborate_fn const &, expr const & e, pos_info_provider const * p) {
|
||||
register_tac(n, [=](type_checker & tc, elaborate_fn const &, expr const & e, pos_info_provider const *) {
|
||||
buffer<expr> args;
|
||||
get_app_args(e, args);
|
||||
if (args.size() != 1)
|
||||
|
|
Loading…
Reference in a new issue