From 7053e6720f04cef3e74e2db8ab31af3122d2873e Mon Sep 17 00:00:00 2001 From: jakubtomsu <66876057+jakubtomsu@users.noreply.github.com> Date: Mon, 23 Mar 2026 17:18:01 +0100 Subject: [PATCH] remove type_bit_field_size accident --- base/intrinsics/intrinsics.odin | 2 -- 1 file changed, 2 deletions(-) diff --git a/base/intrinsics/intrinsics.odin b/base/intrinsics/intrinsics.odin index 0e70250d5..4d3d38882 100644 --- a/base/intrinsics/intrinsics.odin +++ b/base/intrinsics/intrinsics.odin @@ -208,8 +208,6 @@ type_field_type :: proc($T: typeid, $name: string) -> typeid --- type_field_bit_size :: proc($T: typeid, $name: string) -> int where type_is_bit_field(T) --- type_field_bit_offset :: proc($T: typeid, $name: string) -> int where type_is_bit_field(T) --- -type_bit_field_size :: proc($T: typeid, $name: string) -> typeid --- - type_proc_parameter_count :: proc($T: typeid) -> int where type_is_proc(T) --- type_proc_return_count :: proc($T: typeid) -> int where type_is_proc(T) ---