fix(library/app_builder): missing initialization
This commit is contained in:
parent
5bb2a41c64
commit
5efd91e435
1 changed files with 3 additions and 1 deletions
|
@ -58,7 +58,9 @@ struct app_builder::imp {
|
|||
cache m_cache;
|
||||
buffer<levels> m_levels;
|
||||
|
||||
imp(type_checker & tc):m_tc(tc), m_plugin(mk_whnf_match_plugin(tc)) {}
|
||||
imp(type_checker & tc):m_tc(tc), m_plugin(mk_whnf_match_plugin(tc)) {
|
||||
m_levels.push_back(levels());
|
||||
}
|
||||
|
||||
// Make sure m_levels contains at least nlvls metavariable universe levels
|
||||
void ensure_levels(unsigned nlvls) {
|
||||
|
|
Loading…
Reference in a new issue