From bd846c0e565ca0db276cb6b7eac7763bebe19b84 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Mon, 19 Dec 2011 16:27:15 -0500 Subject: Cleanup: removed dead code, and use C99 typedefs for int64 (supported by all modern c++ compilers) --- src/uint256.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/uint256.h') diff --git a/src/uint256.h b/src/uint256.h index b6132822c5..d3da1f26d2 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -11,16 +11,8 @@ #include #include -#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 vArg); -- cgit v1.2.3