mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
Merge bitcoin-core/gui#183: Add include for std::bind.
2a39ccf133
Add include for std::bind. (sinetek) Pull request description: Hi, this patch adds in <functional> because the GUI code makes use of std::bind. That's all. ACKs for top commit: jonasschnelli: utACK2a39ccf133
Tree-SHA512: fb5ac07d9cd5d006182b52857b289a9926362a2f1bfa4f7f1c78a088670e2ccf39ca28214781df82e8de3909fa3e69685fe1124a7e3ead758575839f5f2277a9
This commit is contained in:
commit
e130ff38c9
10 changed files with 12 additions and 1 deletions
|
@ -35,6 +35,7 @@
|
|||
|
||||
#include <algorithm>
|
||||
#include <cstdint>
|
||||
#include <functional>
|
||||
#include <unordered_map>
|
||||
|
||||
#include <math.h>
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
#include <qt/macdockiconhandler.h>
|
||||
#endif
|
||||
|
||||
#include <functional>
|
||||
#include <chain.h>
|
||||
#include <chainparams.h>
|
||||
#include <interfaces/handler.h>
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
#include <validation.h>
|
||||
|
||||
#include <stdint.h>
|
||||
#include <functional>
|
||||
|
||||
#include <QDebug>
|
||||
#include <QThread>
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
#include <util/system.h>
|
||||
#include <util/translation.h>
|
||||
|
||||
#include <functional>
|
||||
|
||||
#include <QApplication>
|
||||
#include <QCloseEvent>
|
||||
#include <QPainter>
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
#include <uint256.h>
|
||||
|
||||
#include <algorithm>
|
||||
#include <functional>
|
||||
|
||||
#include <QColor>
|
||||
#include <QDateTime>
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#include <wallet/wallet.h> // for CRecipient
|
||||
|
||||
#include <stdint.h>
|
||||
#include <functional>
|
||||
|
||||
#include <QDebug>
|
||||
#include <QMessageBox>
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#include <random.h>
|
||||
|
||||
#include <assert.h>
|
||||
#include <functional>
|
||||
#include <utility>
|
||||
|
||||
CScheduler::CScheduler()
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
#include <boost/test/unit_test.hpp>
|
||||
#include <boost/thread/thread.hpp>
|
||||
|
||||
#include <functional>
|
||||
#include <mutex>
|
||||
|
||||
BOOST_AUTO_TEST_SUITE(scheduler_tests)
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#include <util/strencodings.h>
|
||||
#include <validation.h>
|
||||
|
||||
#include <functional>
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
|
|
|
@ -15,10 +15,11 @@
|
|||
#include <util/strencodings.h>
|
||||
#include <util/system.h>
|
||||
|
||||
#include <vector>
|
||||
#include <deque>
|
||||
#include <functional>
|
||||
#include <set>
|
||||
#include <stdlib.h>
|
||||
#include <vector>
|
||||
|
||||
#include <boost/signals2/signal.hpp>
|
||||
#include <boost/algorithm/string/split.hpp>
|
||||
|
|
Loading…
Reference in a new issue