From a7c2d7870f0720d905ec77add6eeb5876c09ee5f Mon Sep 17 00:00:00 2001 From: Takuya Wakazono Date: Wed, 27 Nov 2024 22:20:54 +0900 Subject: [PATCH] Include missing headers for compatibility with GCC 15 cstdint needs to be included explicitly since GCC 15. https://gcc.gnu.org/gcc-15/porting_to.html --- libfsst.hpp | 1 + libfsst12.hpp | 1 + 2 files changed, 2 insertions(+) diff --git a/libfsst.hpp b/libfsst.hpp index 6a38ab4..d5ffcb8 100644 --- a/libfsst.hpp +++ b/libfsst.hpp @@ -17,6 +17,7 @@ // You can contact the authors via the FSST source repository : https://github.com/cwida/fsst #include #include +#include #include #include #include diff --git a/libfsst12.hpp b/libfsst12.hpp index 6a88941..0093a2e 100644 --- a/libfsst12.hpp +++ b/libfsst12.hpp @@ -17,6 +17,7 @@ // You can contact the authors via the FSST source repository : https://github.com/cwida/fsst #include #include +#include #include #include #include