chore(library/definitional): remove dead code
This commit is contained in:
parent
fa1bf40d0f
commit
c751bdd9e6
1 changed files with 0 additions and 1 deletions
|
@ -19,7 +19,6 @@ environment mk_induction_on(environment const & env, name const & n) {
|
||||||
throw exception(sstream() << "error in 'induction_on' generation, '" << n << "' is not an inductive datatype");
|
throw exception(sstream() << "error in 'induction_on' generation, '" << n << "' is not an inductive datatype");
|
||||||
name rec_on_name(n, "rec_on");
|
name rec_on_name(n, "rec_on");
|
||||||
name induction_on_name(n, "induction_on");
|
name induction_on_name(n, "induction_on");
|
||||||
name_generator ngen;
|
|
||||||
declaration rec_on_decl = env.get(rec_on_name);
|
declaration rec_on_decl = env.get(rec_on_name);
|
||||||
declaration ind_decl = env.get(n);
|
declaration ind_decl = env.get(n);
|
||||||
unsigned rec_on_num_univs = length(rec_on_decl.get_univ_params());
|
unsigned rec_on_num_univs = length(rec_on_decl.get_univ_params());
|
||||||
|
|
Loading…
Reference in a new issue