diff options
Diffstat (limited to 'core/runtime/default_allocators.odin')
| -rw-r--r-- | core/runtime/default_allocators.odin | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/runtime/default_allocators.odin b/core/runtime/default_allocators.odin index 3643fccdf..14f4edcda 100644 --- a/core/runtime/default_allocators.odin +++ b/core/runtime/default_allocators.odin @@ -139,6 +139,9 @@ default_temp_allocator_proc :: proc(allocator_data: rawptr, mode: Allocator_Mode set^ = {.Alloc, .Free, .Free_All, .Resize, .Query_Features}; } return set; + + case .Query_Info: + return nil; } return nil; |