From 3a2f9fa12e2a9a5cd016a4f00f635da188e54fba Mon Sep 17 00:00:00 2001 From: marcelb Date: Sun, 14 Jan 2024 20:53:04 +0100 Subject: [PATCH] Windows uint datatype def --- lib/log.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/log.hpp b/lib/log.hpp index a1e496e..09426d6 100644 --- a/lib/log.hpp +++ b/lib/log.hpp @@ -9,6 +9,9 @@ #include #include +#if _WIN32 +typedef unsigned int uint; +#endif namespace marcelb { using namespace std;