mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-12 23:18:14 +01:00
Remove #define loop from util.h
Replace the loop macro with while (true). The #define caused problems for Qt.
This commit is contained in:
@@ -35,7 +35,6 @@ typedef unsigned long long uint64;
|
||||
static const int64 COIN = 100000000;
|
||||
static const int64 CENT = 1000000;
|
||||
|
||||
#define loop for (;;)
|
||||
#define BEGIN(a) ((char*)&(a))
|
||||
#define END(a) ((char*)&((&(a))[1]))
|
||||
#define UBEGIN(a) ((unsigned char*)&(a))
|
||||
|
||||
Reference in New Issue
Block a user