diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-28 22:49:48 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-28 23:14:03 -0400 |
| commit | b3caae6db4da4b604d5812d587b773674d72ccf3 (patch) | |
| tree | 58f77f0adbb571417c48032363b72d83c50f4a52 /core/flags | |
| parent | 6496432b8056eeecd9ba396148f7c458a5cc02ac (diff) | |
Keep `-vet` happy
Diffstat (limited to 'core/flags')
| -rw-r--r-- | core/flags/internal_rtti.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/flags/internal_rtti.odin b/core/flags/internal_rtti.odin index c9b1f59fd..f19f52ba5 100644 --- a/core/flags/internal_rtti.odin +++ b/core/flags/internal_rtti.odin @@ -184,7 +184,7 @@ parse_and_set_pointer_by_base_type :: proc(ptr: rawptr, str: string, type_info: case 16: (cast(^u16) ptr)^ = cast(u16) value case 32: (cast(^u32) ptr)^ = cast(u32) value case 64: (cast(^u64) ptr)^ = cast(u64) value - case 128: (cast(^u128) ptr)^ = cast(u128) value + case 128: (cast(^u128) ptr)^ = value } } |