Skip to content

Commit 53efb09

Browse files
jtimonjtimon
authored andcommitted
Discover some missing includes
1 parent 8d5e510 commit 53efb09

File tree

6 files changed

+10
-1
lines changed

6 files changed

+10
-1
lines changed

src/bloom.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
#include <math.h>
1111
#include <stdlib.h>
1212

13+
#include <boost/foreach.hpp>
14+
1315
#define LN2SQUARED 0.4804530139182014246671025263266649717305529515945455
1416
#define LN2 0.6931471805599453094172321214581765680755001343602552
1517

src/core.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
#include "tinyformat.h"
99

10+
#include <boost/foreach.hpp>
11+
1012
std::string COutPoint::ToString() const
1113
{
1214
return strprintf("COutPoint(%s, %u)", hash.ToString().substr(0,10), n);

src/core_write.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
#include "utilmoneystr.h"
1212
#include "base58.h"
1313

14+
#include <boost/foreach.hpp>
15+
1416
using namespace std;
1517

1618
string EncodeHexTx(const CTransaction& tx)

src/qt/recentrequeststablemodel.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
#include "guiutil.h"
99
#include "optionsmodel.h"
1010

11+
#include <boost/foreach.hpp>
12+
1113
RecentRequestsTableModel::RecentRequestsTableModel(CWallet *wallet, WalletModel *parent) :
1214
walletModel(parent)
1315
{

src/script.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
#include <boost/tuple/tuple_comparison.hpp>
2323
#include <boost/tuple/tuple.hpp>
2424

25+
#include <boost/foreach.hpp>
26+
2527
using namespace std;
2628
using namespace boost;
2729

src/script.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
#include <string>
1616
#include <vector>
1717

18-
#include <boost/foreach.hpp>
1918
#include <boost/variant.hpp>
2019

2120
class CKeyStore;

0 commit comments

Comments
 (0)