fix(compiler/preprocess_rec): warning when compiling using clang on OSX
This commit is contained in:
parent
4dc27fb43b
commit
f482e09cc2
1 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ static name * g_tmp_prefix = nullptr;
|
||||||
|
|
||||||
class preprocess_rec_fn {
|
class preprocess_rec_fn {
|
||||||
environment m_env;
|
environment m_env;
|
||||||
buffer<name> & m_aux_decls;
|
// buffer<name> & m_aux_decls; // TODO(Leo):
|
||||||
|
|
||||||
bool check(declaration const & d, expr const & v) {
|
bool check(declaration const & d, expr const & v) {
|
||||||
type_checker tc(m_env);
|
type_checker tc(m_env);
|
||||||
|
@ -40,7 +40,7 @@ class preprocess_rec_fn {
|
||||||
}
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
preprocess_rec_fn(environment const & env, buffer<name> & aux_decls): m_env(env), m_aux_decls(aux_decls) {}
|
preprocess_rec_fn(environment const & env, buffer<name> & /* aux_decls */): m_env(env) {} // , m_aux_decls(aux_decls) {}
|
||||||
|
|
||||||
environment operator()(declaration const & d) {
|
environment operator()(declaration const & d) {
|
||||||
expr v = d.get_value();
|
expr v = d.get_value();
|
||||||
|
|
Loading…
Reference in a new issue