aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjtimon <jtimon@monetize.io>2014-08-23 05:09:47 +0200
committerjtimon <jtimon@blockstream.io>2014-09-02 02:27:03 +0200
commit53efb09e4ceaa0ccb4e6271387f5013fe5e1ec75 (patch)
treee1059984eca192916527bfb1627594291228e1e1
parent8d5e5102f6f80c037b6bbc2985b778fd40c80d1c (diff)
downloadbitcoin-53efb09e4ceaa0ccb4e6271387f5013fe5e1ec75.tar.xz
Discover some missing includes
-rw-r--r--src/bloom.cpp2
-rw-r--r--src/core.cpp2
-rw-r--r--src/core_write.cpp2
-rw-r--r--src/qt/recentrequeststablemodel.cpp2
-rw-r--r--src/script.cpp2
-rw-r--r--src/script.h1
6 files changed, 10 insertions, 1 deletions
diff --git a/src/bloom.cpp b/src/bloom.cpp
index 85a2ddc189..e34041336f 100644
--- a/src/bloom.cpp
+++ b/src/bloom.cpp
@@ -10,6 +10,8 @@
#include <math.h>
#include <stdlib.h>
+#include <boost/foreach.hpp>
+
#define LN2SQUARED 0.4804530139182014246671025263266649717305529515945455
#define LN2 0.6931471805599453094172321214581765680755001343602552
diff --git a/src/core.cpp b/src/core.cpp
index e6636ae04f..8dcda0126a 100644
--- a/src/core.cpp
+++ b/src/core.cpp
@@ -7,6 +7,8 @@
#include "tinyformat.h"
+#include <boost/foreach.hpp>
+
std::string COutPoint::ToString() const
{
return strprintf("COutPoint(%s, %u)", hash.ToString().substr(0,10), n);
diff --git a/src/core_write.cpp b/src/core_write.cpp
index e63b64d692..e66e75515c 100644
--- a/src/core_write.cpp
+++ b/src/core_write.cpp
@@ -11,6 +11,8 @@
#include "utilmoneystr.h"
#include "base58.h"
+#include <boost/foreach.hpp>
+
using namespace std;
string EncodeHexTx(const CTransaction& tx)
diff --git a/src/qt/recentrequeststablemodel.cpp b/src/qt/recentrequeststablemodel.cpp
index 9e3976644e..0e5802922c 100644
--- a/src/qt/recentrequeststablemodel.cpp
+++ b/src/qt/recentrequeststablemodel.cpp
@@ -8,6 +8,8 @@
#include "guiutil.h"
#include "optionsmodel.h"
+#include <boost/foreach.hpp>
+
RecentRequestsTableModel::RecentRequestsTableModel(CWallet *wallet, WalletModel *parent) :
walletModel(parent)
{
diff --git a/src/script.cpp b/src/script.cpp
index 28c50a1358..21883bd41a 100644
--- a/src/script.cpp
+++ b/src/script.cpp
@@ -22,6 +22,8 @@
#include <boost/tuple/tuple_comparison.hpp>
#include <boost/tuple/tuple.hpp>
+#include <boost/foreach.hpp>
+
using namespace std;
using namespace boost;
diff --git a/src/script.h b/src/script.h
index c1f5aa1dd5..d17cfe3fa4 100644
--- a/src/script.h
+++ b/src/script.h
@@ -15,7 +15,6 @@
#include <string>
#include <vector>
-#include <boost/foreach.hpp>
#include <boost/variant.hpp>
class CKeyStore;