fix(library/vm/vm_string): we were not using the builtin implementation for string.decidable_eq
This commit is contained in:
parent
600b7ceb28
commit
49d779e3a6
1 changed files with 2 additions and 2 deletions
|
|
@ -502,8 +502,8 @@ void initialize_vm_string() {
|
|||
DECLARE_VM_BUILTIN(name({"string", "to_list"}), string_to_list);
|
||||
DECLARE_VM_BUILTIN(name({"string", "fold"}), string_fold);
|
||||
DECLARE_VM_BUILTIN(name({"string", "mk_iterator"}), string_mk_iterator);
|
||||
DECLARE_VM_BUILTIN(name({"string", "has_decidable_eq"}), string_has_decidable_eq);
|
||||
// DECLARE_VM_BUILTIN(name({"string", "cmp"}), string_cmp);
|
||||
DECLARE_VM_BUILTIN(name({"string", "decidable_eq"}), string_has_decidable_eq);
|
||||
// DECLARE_VM_BUILTIN(name({"string", "cmp"}), string_cmp);
|
||||
DECLARE_VM_BUILTIN(name({"string", "has_decidable_lt"}), string_has_decidable_lt);
|
||||
DECLARE_VM_BUILTIN(name({"string", "hash"}), string_hash);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue