1
0
mirror of https://github.com/Zygo/bees.git synced 2025-05-17 21:35:45 +02:00

test: GCC 13 fix for limits.cc

GCC complains that #include <cstdint> is missing, so add that.

Signed-off-by: Zygo Blaxell <bees@furryterror.org>
This commit is contained in:
Zygo Blaxell 2023-05-07 21:02:58 -04:00
parent 75b2067cef
commit d6732c58e2

View File

@ -3,6 +3,7 @@
#include "crucible/limits.h" #include "crucible/limits.h"
#include <cassert> #include <cassert>
#include <cstdint>
using namespace crucible; using namespace crucible;