diff options
| author | Gavin Andresen <[email protected]> | 2011-12-19 16:27:15 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-12-19 19:10:34 -0500 |
| commit | bd846c0e565ca0db276cb6b7eac7763bebe19b84 (patch) | |
| tree | 90500a69598a62954868910e64d0a77732389c2f /src/uint256.h | |
| parent | Merge pull request #690 from runeksvendsen/qt-cmdline-options-parsing (diff) | |
| download | discoin-bd846c0e565ca0db276cb6b7eac7763bebe19b84.tar.xz discoin-bd846c0e565ca0db276cb6b7eac7763bebe19b84.zip | |
Cleanup: removed dead code, and use C99 typedefs for int64 (supported by all modern c++ compilers)
Diffstat (limited to 'src/uint256.h')
| -rw-r--r-- | src/uint256.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/uint256.h b/src/uint256.h index b6132822c..d3da1f26d 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -11,16 +11,8 @@ #include <string> #include <vector> -#if defined(_MSC_VER) || defined(__BORLANDC__) -typedef __int64 int64; -typedef unsigned __int64 uint64; -#else typedef long long int64; typedef unsigned long long uint64; -#endif -#if defined(_MSC_VER) && _MSC_VER < 1300 -#define for if (false) ; else for -#endif inline int Testuint256AdHoc(std::vector<std::string> vArg); |