Fix missing cstdint header for compiling with gcc15.

See https://gcc.gnu.org/gcc-15/porting_to.html for the details.
This commit is contained in:
p_q 2025-09-10 10:24:55 +02:00 committed by Patrick Ziegler
parent 455d63611a
commit f99e0b1c7a

View File

@ -7,6 +7,7 @@
#include <type_traits> #include <type_traits>
#include <utility> #include <utility>
#include <vector> #include <vector>
#include <cstdint>
#include "settings.hpp" #include "settings.hpp"