aboutsummaryrefslogtreecommitdiff
path: root/src/common.cpp
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2021-08-26 21:44:02 +0100
committerGitHub <noreply@github.com>2021-08-26 21:44:02 +0100
commitcdd35607023a333ae096f5a7e1437082a437ff04 (patch)
treef62394981d7554acdddac3d3e68c60daa7af23a8 /src/common.cpp
parente45aa68c14149cc4ebcc352e3fe4631c642f33f3 (diff)
parent6d49df1d87fb1d74f00977dee3a3ce42c46c1eee (diff)
Merge pull request #1103 from odin-lang/new-thread-pool
Improved Thread Pool implementation for the Compiler
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;