diff options
| author | gingerBill <bill@gingerbill.org> | 2023-01-30 12:51:56 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-01-30 12:51:56 +0000 |
| commit | 4cb16db4e91432cf90b5bf94678a0eb0eef0273d (patch) | |
| tree | 733a3881cb94169377b6aff24f8982da0d53d35a | |
| parent | 338d483682d018634c42c0db8d1810b5e59b9a2e (diff) | |
Remove `@(require_results)` from one procedure
| -rw-r--r-- | core/reflect/reflect.odin | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/reflect/reflect.odin b/core/reflect/reflect.odin index ae82e3f76..58f5f6aff 100644 --- a/core/reflect/reflect.odin +++ b/core/reflect/reflect.odin @@ -850,7 +850,6 @@ set_union_variant_type_info :: proc(a: any, tag_ti: ^Type_Info) { panic("expected a union to reflect.set_union_variant_type_info") } -@(require_results) set_union_value :: proc(dst: any, value: any) -> bool { if dst == nil { return false } |