diff options
| author | gingerBill <bill@gingerbill.org> | 2021-07-10 19:50:34 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-07-10 19:50:34 +0100 |
| commit | d8abe7fc4d9e9e98147966bb44ffff79375d12ff (patch) | |
| tree | d9c7dc91f1e557f1d77e9729ce96db77924f7d48 /src/common.cpp | |
| parent | ec9667ef5aca5f0d3ff4483105bea201796ff620 (diff) | |
Implement `MPMCQueue` for procedure body checking
This is preparation for basic multithreading in the semantic checker
Diffstat (limited to 'src/common.cpp')
| -rw-r--r-- | src/common.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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_++) |