fix(frontends/lean/parser): uninit variable
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
caa47b9a70
commit
3bb2fb2176
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ parser::parser(environment const & env, io_state const & ios,
|
|||
m_verbose(true), m_use_exceptions(use_exceptions),
|
||||
m_scanner(strm, strm_name, line), m_local_level_decls(lds), m_local_decls(eds),
|
||||
m_theorem_queue(*this, num_threads > 1 ? num_threads - 1 : 0),
|
||||
m_snapshot_vector(sv), m_info_manager(im), m_cache(nullptr) {
|
||||
m_snapshot_vector(sv), m_info_manager(im), m_cache(nullptr), m_index(nullptr) {
|
||||
m_num_threads = num_threads;
|
||||
m_no_undef_id_error = false;
|
||||
m_found_errors = false;
|
||||
|
|
Loading…
Reference in a new issue