diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-08-08 12:33:34 +0100 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-08-08 12:33:34 +0100 |
| commit | d381d0ece4b9cd5fcf454fbd7ca79969d2b76cb8 (patch) | |
| tree | 46744c069541f90aa965b8f6817e999289654512 /core/flags/rtti.odin | |
| parent | d3f649d244529d93b489140e5c7a1aaff97bedb2 (diff) | |
Fix more procedure to be `contextless`
Diffstat (limited to 'core/flags/rtti.odin')
| -rw-r--r-- | core/flags/rtti.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/flags/rtti.odin b/core/flags/rtti.odin index ce7a23773..058292698 100644 --- a/core/flags/rtti.odin +++ b/core/flags/rtti.odin @@ -38,6 +38,6 @@ Note that only one can be active at a time. Inputs: - setter: The type setter. Pass `nil` to disable any previously set setter. */ -register_type_setter :: proc(setter: Custom_Type_Setter) { +register_type_setter :: proc "contextless" (setter: Custom_Type_Setter) { global_custom_type_setter = setter } |