aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjeffro256 <jeffro256@tutanota.com>2023-10-22 18:02:54 -0500
committerjeffro256 <jeffro256@tutanota.com>2023-10-23 14:53:58 -0500
commit14ae81246d2eb8200ddb2869f2d381ac3f84fbad (patch)
tree16f084e0114dcc4138dc34b33c652cbb638cc3b6
parentMerge pull request #9014 (diff)
downloadmonero-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.h1
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>