From 8115594483b958c6db809dd3edb1603c3969f591 Mon Sep 17 00:00:00 2001 From: pastalian Date: Thu, 23 Jan 2025 15:12:48 +0900 Subject: [PATCH] Include cstdint for compatibility with GCC 15 (#538) cstdint needs to be included explicitly since GCC 15. https://gcc.gnu.org/gcc-15/porting_to.html --- third_party/msgpack11/msgpack11.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/third_party/msgpack11/msgpack11.hpp b/third_party/msgpack11/msgpack11.hpp index 218733c9..cf0a40e6 100644 --- a/third_party/msgpack11/msgpack11.hpp +++ b/third_party/msgpack11/msgpack11.hpp @@ -1,5 +1,6 @@ #pragma once +#include #include #include #include