diff options
| author | gingerBill <bill@gingerbill.org> | 2019-12-15 11:10:50 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-12-15 11:10:50 +0000 |
| commit | 7f5021c8e95e2861388c89d9d467d773339d5f4a (patch) | |
| tree | a47b0593e862ba1f730a2a943b9cc5d1d1a2f1e1 /src/common.cpp | |
| parent | 8bec32477995f5a48fdb784bebe522015aedb036 (diff) | |
Disallow procedure calls with an associated deferred procedure to be used in logical binary expressions (short-circuiting)
Diffstat (limited to 'src/common.cpp')
| -rw-r--r-- | src/common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |