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 /src/cryptonote_config.h | |
| parent | 2656cdf5056c07684741c4425a051760b97025b0 (diff) | |
| download | monzero-core-14ae81246d2eb8200ddb2869f2d381ac3f84fbad.tar.gz monzero-core-14ae81246d2eb8200ddb2869f2d381ac3f84fbad.tar.xz monzero-core-14ae81246d2eb8200ddb2869f2d381ac3f84fbad.zip | |
cryptonote_config: include cstdint
Header was using `uint64_t` without including `<cstdint>` which caused some issues downstream for windows builds
Diffstat (limited to 'src/cryptonote_config.h')
| -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> |
