Skip to content
This repository was archived by the owner on Feb 26, 2023. It is now read-only.

Fix build errors #115

Open
wants to merge 1 commit into
base: BitAssets
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/httpserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@
#endif
#endif

#include <deque>

/** Maximum size of http request (request line + headers) */
static const size_t MAX_HEADERS_SIZE = 8192;

Expand Down
2 changes: 2 additions & 0 deletions src/qt/bitcoingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
#include <ui_interface.h>
#include <util.h>

using namespace boost::placeholders;

// For getting the latest WithdrawalBundle hash
// TODO make the latest WithdrawalBundle hash get set in the client model or somewhere else
// instead of looking it up here.
Expand Down
2 changes: 2 additions & 0 deletions src/qt/clientmodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
#include <QDebug>
#include <QTimer>

using namespace boost::placeholders;

class CBlockIndex;

static int64_t nLastHeaderTipUpdateNotification = 0;
Expand Down
2 changes: 2 additions & 0 deletions src/qt/splashscreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
#include <QPainter>
#include <QRadialGradient>

using namespace boost::placeholders;

SplashScreen::SplashScreen(Qt::WindowFlags f, const NetworkStyle *networkStyle) :
QWidget(0, f), curAlignment(0)
{
Expand Down
1 change: 1 addition & 0 deletions src/qt/trafficgraphwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include <qt/trafficgraphwidget.h>
#include <qt/clientmodel.h>

#include <QPainterPath>
#include <QPainter>
#include <QColor>
#include <QTimer>
Expand Down
1 change: 1 addition & 0 deletions src/qt/trafficgraphwidget.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#include <QWidget>
#include <QQueue>
#include <QPainter>

class ClientModel;

Expand Down
2 changes: 2 additions & 0 deletions src/qt/transactiontablemodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
#include <QIcon>
#include <QList>

using namespace boost::placeholders;

static int column_alignments[] = {
Qt::AlignHCenter|Qt::AlignVCenter, /* # Confs */
Qt::AlignLeft|Qt::AlignVCenter, /* date */
Expand Down
1 change: 1 addition & 0 deletions src/qt/walletmodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
#include <QSet>
#include <QTimer>

using namespace boost::placeholders;

WalletModel::WalletModel(const PlatformStyle *platformStyle, CWallet *_wallet, OptionsModel *_optionsModel, QObject *parent) :
QObject(parent), wallet(_wallet), optionsModel(_optionsModel), addressTableModel(0),
Expand Down
2 changes: 2 additions & 0 deletions src/validation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@
#include <boost/algorithm/string/join.hpp>
#include <boost/thread.hpp>

using namespace boost::placeholders;

#if defined(NDEBUG)
# error "Bitcoin cannot be compiled without assertions."
#endif
Expand Down
2 changes: 2 additions & 0 deletions src/validationinterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@

#include <boost/signals2/signal.hpp>

using namespace boost::placeholders;

struct MainSignalsInstance {
boost::signals2::signal<void (const CBlockIndex *, const CBlockIndex *, bool fInitialDownload)> UpdatedBlockTip;
boost::signals2::signal<void (const CTransactionRef &)> TransactionAddedToMempool;
Expand Down