diff options
author | jeffro256 <jeffro256@tutanota.com> | 2023-10-22 18:02:54 -0500 |
---|---|---|
committer | jeffro256 <jeffro256@tutanota.com> | 2023-10-23 14:53:58 -0500 |
commit | 14ae81246d2eb8200ddb2869f2d381ac3f84fbad (patch) | |
tree | 16f084e0114dcc4138dc34b33c652cbb638cc3b6 | |
parent | Merge pull request #9014 (diff) | |
download | monero-14ae81246d2eb8200ddb2869f2d381ac3f84fbad.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 bac49aa94..61146a114 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> |