fix(library/blast): typos
This commit is contained in:
parent
0715c86ff4
commit
3bb09e9959
2 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@ class blastenv {
|
|||
lean_unreachable();
|
||||
}
|
||||
|
||||
expr visit_sort(expr const & e) {
|
||||
virtual expr visit_sort(expr const & e) {
|
||||
return blast::mk_sort(to_blast_level(sort_level(e)));
|
||||
}
|
||||
|
||||
|
|
|
@ -338,7 +338,7 @@ static bool assign_mref_core(expr const & ma, expr const & v) {
|
|||
// 3. Any local constant occurring in new_v occurs in locals
|
||||
// 4. m does not occur in new_v
|
||||
bool ok = true;
|
||||
for_each(v, [&](expr const & e, unsigned) {
|
||||
for_each(new_v, [&](expr const & e, unsigned) {
|
||||
if (!ok)
|
||||
return false; // stop search
|
||||
if (is_href(e)) {
|
||||
|
|
Loading…
Reference in a new issue