aboutsummaryrefslogtreecommitdiff
path: root/src/common.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-08-26 21:22:30 +0100
committergingerBill <bill@gingerbill.org>2021-08-26 21:22:30 +0100
commitad3a3547d61b3576a9b0841510669d0f102f9ccf (patch)
tree2e2db735e388c803421d946b4fff9b889127f1ad /src/common.cpp
parentaba14c43ac3faa4d4f323ac5da9f09fcb77c31c0 (diff)
Unify thread pool logic across the rest of the compiler, using a global thread pool
Diffstat (limited to 'src/common.cpp')
-rw-r--r--src/common.cpp4
1 files changed, 1 insertions, 3 deletions
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;