From 7f5021c8e95e2861388c89d9d467d773339d5f4a Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sun, 15 Dec 2019 11:10:50 +0000 Subject: Disallow procedure calls with an associated deferred procedure to be used in logical binary expressions (short-circuiting) --- src/common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common.cpp') diff --git a/src/common.cpp b/src/common.cpp index 779554ecc..78782704c 100644 --- a/src/common.cpp +++ b/src/common.cpp @@ -443,7 +443,7 @@ GB_ALLOCATOR_PROC(arena_allocator_proc) { ptr = arena_alloc(arena, size, alignment); break; case gbAllocation_Free: - GB_PANIC("gbAllocation_Free not supported"); + // GB_PANIC("gbAllocation_Free not supported"); break; case gbAllocation_Resize: GB_PANIC("gbAllocation_Resize: not supported"); -- cgit v1.2.3