Fix build failure with gcc-13

std::uintmax_t and std::uintptr_t need <cstdint>
This commit is contained in:
jas0n098 2023-07-03 15:33:33 +00:00 committed by Ivan
parent 9539b42143
commit 0f76e72de1

View file

@ -4,6 +4,7 @@
#include <string_view>
#include <vector>
#include <cstdarg>
#include <cstdint>
static void append_hex(std::string &out, std::uintmax_t value) {
std::ostringstream buf;