From f04af5d626a0c9f77398e541abeefaf17de9a934 Mon Sep 17 00:00:00 2001 From: nullcoset Date: Sun, 22 Dec 2024 23:48:09 +0100 Subject: [PATCH] fixed missing include cstdint in string.hpp for uint64_t --- include/fc/string.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/fc/string.hpp b/include/fc/string.hpp index 8f269f096..135949b33 100644 --- a/include/fc/string.hpp +++ b/include/fc/string.hpp @@ -3,6 +3,8 @@ #include #include +#include // for uint64_t etc + namespace fc { using std::string;