chore(frontends/lean/parser): remove dead variable
This commit is contained in:
parent
01414cf21c
commit
91b68b6b90
2 changed files with 1 additions and 3 deletions
|
|
@ -158,7 +158,7 @@ parser::parser(environment const & env, io_state const & ios,
|
|||
std::istream & strm, std::string const & file_name,
|
||||
bool use_exceptions,
|
||||
std::shared_ptr<snapshot const> const & s, snapshot_vector * sv):
|
||||
m_env(env), m_ios(ios), m_verbose(true),
|
||||
m_env(env), m_ios(ios),
|
||||
m_use_exceptions(use_exceptions),
|
||||
m_import_fn(import_fn),
|
||||
m_file_name(file_name),
|
||||
|
|
@ -264,7 +264,6 @@ void parser::declare_sorry_if_used() {
|
|||
}
|
||||
|
||||
void parser::updt_options() {
|
||||
m_verbose = get_verbose(m_ios.get_options());
|
||||
m_show_errors = get_parser_show_errors(m_ios.get_options());
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -125,7 +125,6 @@ enum class id_behavior {
|
|||
class parser : public abstract_parser {
|
||||
environment m_env;
|
||||
io_state m_ios;
|
||||
bool m_verbose;
|
||||
bool m_use_exceptions;
|
||||
bool m_show_errors;
|
||||
module_loader m_import_fn;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue