chore(library/compiler/specialize): fix debug build
This commit is contained in:
parent
777119ceab
commit
ba55ecf063
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ enum class spec_arg_kind { Fixed,
|
|||
Other };
|
||||
|
||||
static spec_arg_kind to_spec_arg_kind(object_ref const & r) {
|
||||
lean_assert(is_scalar(r)); return static_cast<spec_arg_kind>(unbox(r.raw()));
|
||||
lean_assert(is_scalar(r.raw())); return static_cast<spec_arg_kind>(unbox(r.raw()));
|
||||
}
|
||||
typedef objects spec_arg_kinds;
|
||||
static spec_arg_kinds to_spec_arg_kinds(buffer<spec_arg_kind> const & ks) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue