chore(kernel/inductive): style
This commit is contained in:
parent
e9b4b811de
commit
effefb8b03
1 changed files with 2 additions and 3 deletions
|
|
@ -111,10 +111,9 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
void check_constructor(constructor const & cnstr, unsigned decl_idx) {
|
||||
void check_constructor(constructor const & cnstr, unsigned /* decl_idx */) {
|
||||
check_no_metavar_no_fvar(m_env, cnstr.m_name, cnstr.m_type);
|
||||
type_checker(m_env).check(cnstr.m_type, m_level_params);
|
||||
|
||||
}
|
||||
|
||||
void check_constructors() {
|
||||
|
|
@ -135,7 +134,7 @@ public:
|
|||
};
|
||||
|
||||
environment environment::add_inductive_decls(inductive_decls const & decls) const {
|
||||
return add_inductive_fn(*this,decls)();
|
||||
return add_inductive_fn(*this, decls)();
|
||||
}
|
||||
|
||||
void initialize_inductive() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue