From ad3a3547d61b3576a9b0841510669d0f102f9ccf Mon Sep 17 00:00:00 2001 From: gingerBill Date: Thu, 26 Aug 2021 21:22:30 +0100 Subject: Unify thread pool logic across the rest of the compiler, using a global thread pool --- src/common.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/common.cpp') diff --git a/src/common.cpp b/src/common.cpp index af0a195a8..b132c26b0 100644 --- a/src/common.cpp +++ b/src/common.cpp @@ -44,11 +44,9 @@ void debugf(char const *fmt, ...); #include "queue.cpp" #include "common_memory.cpp" #include "string.cpp" - - - #include "range_cache.cpp" + u32 fnv32a(void const *data, isize len) { u8 const *bytes = cast(u8 const *)data; u32 h = 0x811c9dc5; -- cgit v1.2.3