diff options
author | jeffro256 <jeffro256@tutanota.com> | 2023-10-22 18:02:54 -0500 |
---|---|---|
committer | jeffro256 <jeffro256@tutanota.com> | 2023-10-22 18:02:54 -0500 |
commit | 56dab0fad2d23c08ca7402c0141b67b8ba57cbd0 (patch) | |
tree | 6c18e991f2db26f013e0d554f4922bc02d3fa14d | |
parent | Merge pull request #9013 (diff) | |
download | monero-56dab0fad2d23c08ca7402c0141b67b8ba57cbd0.tar.xz |
cryptonote_config: include cstdint
Header was using `uint64_t` without including `<cstdint>` which caused some issues downstream for windows builds
-rw-r--r-- | src/cryptonote_config.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cryptonote_config.h b/src/cryptonote_config.h index 45da75b66..fec905928 100644 --- a/src/cryptonote_config.h +++ b/src/cryptonote_config.h @@ -30,6 +30,7 @@ #pragma once +#include <cstdint> #include <stdexcept> #include <string> #include <boost/uuid/uuid.hpp> |