From d8abe7fc4d9e9e98147966bb44ffff79375d12ff Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sat, 10 Jul 2021 19:50:34 +0100 Subject: Implement `MPMCQueue` for procedure body checking This is preparation for basic multithreading in the semantic checker --- src/common.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/common.cpp') diff --git a/src/common.cpp b/src/common.cpp index a77051711..f430e69d8 100644 --- a/src/common.cpp +++ b/src/common.cpp @@ -167,6 +167,7 @@ GB_ALLOCATOR_PROC(heap_allocator_proc) { #include "unicode.cpp" #include "array.cpp" #include "string.cpp" +#include "queue.cpp" #define for_array(index_, array_) for (isize index_ = 0; index_ < (array_).count; index_++) -- cgit v1.2.3