Discover some missing includes
This commit is contained in:
parent
8d5e5102f6
commit
53efb09e4c
6 changed files with 10 additions and 1 deletions
|
@ -10,6 +10,8 @@
|
|||
#include <math.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <boost/foreach.hpp>
|
||||
|
||||
#define LN2SQUARED 0.4804530139182014246671025263266649717305529515945455
|
||||
#define LN2 0.6931471805599453094172321214581765680755001343602552
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
#include "utilmoneystr.h"
|
||||
#include "base58.h"
|
||||
|
||||
#include <boost/foreach.hpp>
|
||||
|
||||
using namespace std;
|
||||
|
||||
string EncodeHexTx(const CTransaction& tx)
|
||||
|
|
|
@ -8,6 +8,8 @@
|
|||
#include "guiutil.h"
|
||||
#include "optionsmodel.h"
|
||||
|
||||
#include <boost/foreach.hpp>
|
||||
|
||||
RecentRequestsTableModel::RecentRequestsTableModel(CWallet *wallet, WalletModel *parent) :
|
||||
walletModel(parent)
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include <boost/foreach.hpp>
|
||||
#include <boost/variant.hpp>
|
||||
|
||||
class CKeyStore;
|
||||
|
|
Loading…
Reference in a new issue