mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-12 07:52:21 +02:00
Cleanup: removed dead code, and use C99 typedefs for int64 (supported by all modern c++ compilers)
This commit is contained in:
@ -19,16 +19,8 @@
|
||||
#include <boost/tuple/tuple_comparison.hpp>
|
||||
#include <boost/tuple/tuple_io.hpp>
|
||||
|
||||
#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
|
||||
|
||||
#ifdef WIN32
|
||||
#include <windows.h>
|
||||
|
Reference in New Issue
Block a user