diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2011-12-20 16:52:59 -0500 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2011-12-20 16:52:59 -0500 |
commit | 21d9f36781604e4ca9fc35dc65265593423b73e9 (patch) | |
tree | 223bf70418e43a0b9c8366c65db214780f77d61a /src/base58.h | |
parent | 781c06c0f534913321a415a4fb64a60734e43101 (diff) |
Use standard C99 (and Qt) types for 64-bit integers
Diffstat (limited to 'src/base58.h')
-rw-r--r-- | src/base58.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/base58.h b/src/base58.h index cba638f4e0..3f2d82f11b 100644 --- a/src/base58.h +++ b/src/base58.h @@ -15,6 +15,8 @@ #ifndef BITCOIN_BASE58_H #define BITCOIN_BASE58_H +#include <stdint.h> + #include <string> #include <vector> #include "bignum.h" |