diff options
author | tobtoht <tob@featherwallet.org> | 2023-05-06 18:13:18 +0200 |
---|---|---|
committer | tobtoht <tob@featherwallet.org> | 2023-05-06 18:13:18 +0200 |
commit | c32befe4f8385f5f893c0db611060bc7c7b425f3 (patch) | |
tree | 936414b5434e12026ca4e3a1a14a1b0c170a8f34 /src | |
parent | Merge pull request #8760 (diff) | |
download | monero-c32befe4f8385f5f893c0db611060bc7c7b425f3.tar.xz |
fix missing <cstdint> includes
Diffstat (limited to 'src')
-rw-r--r-- | src/common/combinator.h | 1 | ||||
-rw-r--r-- | src/wallet/api/wallet2_api.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/common/combinator.h b/src/common/combinator.h index cb237ed8d..6ef244a1e 100644 --- a/src/common/combinator.h +++ b/src/common/combinator.h @@ -34,6 +34,7 @@ #include <iostream> #include <vector> #include <stdexcept> +#include <cstdint> namespace tools { diff --git a/src/wallet/api/wallet2_api.h b/src/wallet/api/wallet2_api.h index ab3d9732e..df86da847 100644 --- a/src/wallet/api/wallet2_api.h +++ b/src/wallet/api/wallet2_api.h @@ -38,6 +38,7 @@ #include <ctime> #include <iostream> #include <stdexcept> +#include <cstdint> // Public interface for libwallet library namespace Monero { |