chore(kernel/expr): fix cpplint warning
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
e737f501e4
commit
3a93212d5e
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ bool value::operator<(value const & other) const {
|
|||
format value::pp() const { return format(get_name()); }
|
||||
format value::pp(bool unicode, bool) const { return unicode ? format(get_unicode_name()) : pp(); }
|
||||
unsigned value::hash() const { return get_name().hash(); }
|
||||
int value::push_lua(lua_State * L) const { lean_assert(L); return 0; }
|
||||
int value::push_lua(lua_State *) const { return 0; } // NOLINT
|
||||
expr_value::expr_value(value & v):
|
||||
expr_cell(expr_kind::Value, v.hash(), false),
|
||||
m_val(v) {
|
||||
|
|
Loading…
Reference in a new issue