diff options
| author | Luke Dashjr <[email protected]> | 2011-12-20 16:52:59 -0500 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2011-12-20 16:52:59 -0500 |
| commit | 21d9f36781604e4ca9fc35dc65265593423b73e9 (patch) | |
| tree | 223bf70418e43a0b9c8366c65db214780f77d61a /src/test/uint256_tests.cpp | |
| parent | Merge pull request #677 from luke-jr/minfee_modes (diff) | |
| download | discoin-21d9f36781604e4ca9fc35dc65265593423b73e9.tar.xz discoin-21d9f36781604e4ca9fc35dc65265593423b73e9.zip | |
Use standard C99 (and Qt) types for 64-bit integers
Diffstat (limited to 'src/test/uint256_tests.cpp')
| -rw-r--r-- | src/test/uint256_tests.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/uint256_tests.cpp b/src/test/uint256_tests.cpp index efdc8a6ae..d7e1e5137 100644 --- a/src/test/uint256_tests.cpp +++ b/src/test/uint256_tests.cpp @@ -1,3 +1,5 @@ +#include <stdint.h> + #include <boost/test/unit_test.hpp> #include "uint256.h" @@ -10,7 +12,7 @@ BOOST_AUTO_TEST_CASE(uint256_equality) uint256 num2 = 11; BOOST_CHECK(num1+1 == num2); - uint64 num3 = 10; + uint64_t num3 = 10; BOOST_CHECK(num1 == num3); BOOST_CHECK(num1+num2 == num3+num2); } |