From 66479a223208a990cd3cf203d3fbafb5cd2c078c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Povi=C5=A1er?= Date: Thu, 8 Feb 2024 11:15:26 +0100 Subject: [PATCH] hashlib: Add missing `stdint.h` include We use `uint32_t` `uint64_t` etc. so add an explicit include. --- kernel/hashlib.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/hashlib.h b/kernel/hashlib.h index 25aa94b80..e8ddddd33 100644 --- a/kernel/hashlib.h +++ b/kernel/hashlib.h @@ -17,6 +17,8 @@ #include #include +#include + namespace hashlib { const int hashtable_size_trigger = 2;