diff options
| author | gingerBill <bill@gingerbill.org> | 2021-08-26 21:22:30 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-08-26 21:22:30 +0100 |
| commit | ad3a3547d61b3576a9b0841510669d0f102f9ccf (patch) | |
| tree | 2e2db735e388c803421d946b4fff9b889127f1ad /src/common.cpp | |
| parent | aba14c43ac3faa4d4f323ac5da9f09fcb77c31c0 (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.cpp | 4 |
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; |