chore(kernel/type_checker): fix compilation warning msgs

This commit is contained in:
Leonardo de Moura 2017-12-17 08:44:51 -08:00
parent 9ef95c9dff
commit f7bc884ae8

View file

@ -98,7 +98,7 @@ public:
expr check_ignore_undefined_universes(expr const & e);
virtual expr check(expr const & t) { return check_ignore_undefined_universes(t); }
bool is_trusted_only() const override { return m_trusted_only; }
virtual bool is_trusted_only() const { return m_trusted_only; }
/** \brief Return true iff t is definitionally equal to s. */
virtual bool is_def_eq(expr const & t, expr const & s);