From 34e4995764a78130839886dc0e83d2d2e57f7534 Mon Sep 17 00:00:00 2001 From: Steffen Pohle Date: Wed, 7 Aug 2024 23:24:19 +0200 Subject: [PATCH] fixed windows build. missing include of stdint.h --- Changelog | 3 +++ json.h | 1 + 2 files changed, 4 insertions(+) diff --git a/Changelog b/Changelog index a6f26d6..6bc44d9 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,6 @@ +2024-08-07: +- fixed compile on windows. stdint.h was not included + 2024-02-22: - fixed: ignore incorrect requests diff --git a/json.h b/json.h index 338f862..7660ea8 100644 --- a/json.h +++ b/json.h @@ -10,6 +10,7 @@ #include #include #include +#include using namespace std;