chore(library/type_context): fix compilation warning

This commit is contained in:
Leonardo de Moura 2018-02-07 09:42:24 -08:00
parent 21e52408b2
commit e06c3cbd8f

View file

@ -714,7 +714,7 @@ public:
virtual environment const & env() const override { return m_cache->m_env; }
// TODO(Leo): avoid ::lean::mk_fresh_name
virtual name mk_fresh_name() { return ::lean::mk_fresh_name(); }
virtual name mk_fresh_name() override { return ::lean::mk_fresh_name(); }
options const & get_options() const { return m_cache->m_options; }
local_context const & lctx() const { return m_lctx; }