File tree 28 files changed +0
-40
lines changed
28 files changed +0
-40
lines changed Original file line number Diff line number Diff line change 20
20
#include " httprpc.h"
21
21
#include " utilstrencodings.h"
22
22
23
- #include < boost/algorithm/string/predicate.hpp>
24
23
#include < boost/thread.hpp>
25
24
26
25
#include < stdio.h>
Original file line number Diff line number Diff line change 12
12
13
13
#include < boost/foreach.hpp>
14
14
#include < boost/thread/condition_variable.hpp>
15
- #include < boost/thread/locks.hpp>
16
15
#include < boost/thread/mutex.hpp>
17
16
18
17
template <typename T>
Original file line number Diff line number Diff line change 17
17
#include < assert.h>
18
18
#include < stdint.h>
19
19
20
- #include < boost/foreach.hpp>
21
20
#include < unordered_map>
22
21
23
22
/* *
Original file line number Diff line number Diff line change 1
1
#include " fs.h"
2
2
3
- #include < boost/filesystem.hpp>
4
-
5
3
namespace fsbridge {
6
4
7
5
FILE *fopen (const fs::path& p, const char *mode)
Original file line number Diff line number Diff line change 55
55
#endif
56
56
57
57
#include < boost/algorithm/string/classification.hpp>
58
- #include < boost/algorithm/string/predicate.hpp>
59
58
#include < boost/algorithm/string/replace.hpp>
60
59
#include < boost/algorithm/string/split.hpp>
61
60
#include < boost/bind.hpp>
Original file line number Diff line number Diff line change 9
9
#include " pubkey.h"
10
10
#include " util.h"
11
11
12
- #include < boost/foreach.hpp>
13
-
14
12
bool CKeyStore::AddKey (const CKey &key) {
15
13
return AddKeyPubKey (key, key.GetPubKey ());
16
14
}
Original file line number Diff line number Diff line change 13
13
#include " sync.h"
14
14
15
15
#include < boost/signals2/signal.hpp>
16
- #include < boost/variant.hpp>
17
16
18
17
/* * A virtual base class for key stores */
19
18
class CKeyStore
Original file line number Diff line number Diff line change 30
30
#include " utilstrencodings.h"
31
31
#include " validationinterface.h"
32
32
33
- #include < boost/thread.hpp>
34
-
35
33
#if defined(NDEBUG)
36
34
# error "Bitcoin cannot be compiled without assertions."
37
35
#endif
Original file line number Diff line number Diff line change 21
21
#include " wallet/wallet.h" // for CWallet::GetRequiredFee()
22
22
#endif
23
23
24
- #include < boost/thread.hpp>
25
-
26
24
#include < QDataWidgetMapper>
27
25
#include < QDir>
28
26
#include < QIntValidator>
Original file line number Diff line number Diff line change 26
26
#include < QIcon>
27
27
#include < QList>
28
28
29
- #include < boost/foreach.hpp>
30
-
31
29
// Amount column is right-aligned it contains numbers
32
30
static int column_alignments[] = {
33
31
Qt::AlignLeft|Qt::AlignVCenter, /* status */
Original file line number Diff line number Diff line change 10
10
#include < set>
11
11
#include < stdint.h>
12
12
13
- #include < boost/algorithm/string/case_conv.hpp> // for to_lower()
14
13
#include < univalue.h>
15
14
16
15
class CRPCConvertParam
Original file line number Diff line number Diff line change 18
18
19
19
#include < boost/bind.hpp>
20
20
#include < boost/foreach.hpp>
21
- #include < boost/shared_ptr.hpp>
22
21
#include < boost/signals2/signal.hpp>
23
- #include < boost/thread.hpp>
24
22
#include < boost/algorithm/string/case_conv.hpp> // for to_upper()
25
23
#include < boost/algorithm/string/classification.hpp>
26
24
#include < boost/algorithm/string/split.hpp>
Original file line number Diff line number Diff line change 9
9
#include " threadsafety.h"
10
10
11
11
#include < boost/thread/condition_variable.hpp>
12
- #include < boost/thread/locks.hpp>
13
12
#include < boost/thread/mutex.hpp>
14
13
#include < boost/thread/recursive_mutex.hpp>
15
14
Original file line number Diff line number Diff line change 18
18
19
19
#include < stdint.h>
20
20
21
- #include < boost/date_time/posix_time/posix_time_types.hpp>
22
- #include < boost/foreach.hpp>
23
21
#include < boost/test/unit_test.hpp>
24
22
25
23
// Tests these internal-to-net_processing.cpp methods:
Original file line number Diff line number Diff line change 15
15
#include " utilstrencodings.h"
16
16
#include " test/test_bitcoin.h"
17
17
18
- #include < boost/foreach.hpp>
19
18
#include < boost/test/unit_test.hpp>
20
19
21
20
#include < univalue.h>
Original file line number Diff line number Diff line change 19
19
#include < vector>
20
20
21
21
#include < boost/test/unit_test.hpp>
22
- #include < boost/tuple/tuple.hpp>
23
22
24
23
BOOST_FIXTURE_TEST_SUITE (bloom_tests, BasicTestingSetup)
25
24
Original file line number Diff line number Diff line change 7
7
#include " test/test_bitcoin.h"
8
8
#include " random.h"
9
9
#include < thread>
10
- #include < boost/thread.hpp>
11
-
12
10
13
11
/* * Test Suite for CuckooCache
14
12
*
Original file line number Diff line number Diff line change 7
7
#include " random.h"
8
8
#include " test/test_bitcoin.h"
9
9
10
- #include < boost/assign/std/vector.hpp> // for 'operator+=()'
11
- #include < boost/assert.hpp>
12
10
#include < boost/test/unit_test.hpp>
13
11
14
12
// Test if a string consists entirely of null characters
Original file line number Diff line number Diff line change 12
12
13
13
#include < vector>
14
14
15
- #include < boost/foreach.hpp>
16
15
#include < boost/test/unit_test.hpp>
17
16
18
17
// Helpers:
Original file line number Diff line number Diff line change 7
7
#include " test/test_bitcoin.h"
8
8
9
9
#include < boost/assign/std/vector.hpp> // for 'operator+=()'
10
- #include < boost/assert.hpp>
11
10
#include < boost/test/unit_test.hpp>
12
11
13
12
using namespace boost ::assign; // bring 'operator+=()' into scope
Original file line number Diff line number Diff line change 25
25
26
26
#include < memory>
27
27
28
- #include < boost/thread.hpp>
29
-
30
28
uint256 insecure_rand_seed = GetRandHash();
31
29
FastRandomContext insecure_rand_ctx (insecure_rand_seed);
32
30
Original file line number Diff line number Diff line change 18
18
#include < boost/bind.hpp>
19
19
#include < boost/signals2/signal.hpp>
20
20
#include < boost/foreach.hpp>
21
- #include < boost/algorithm/string/predicate.hpp>
22
21
#include < boost/algorithm/string/split.hpp>
23
22
#include < boost/algorithm/string/classification.hpp>
24
23
#include < boost/algorithm/string/replace.hpp>
Original file line number Diff line number Diff line change 77
77
#endif
78
78
79
79
#include < boost/algorithm/string/case_conv.hpp> // for to_lower()
80
- #include < boost/algorithm/string/join.hpp>
81
80
#include < boost/algorithm/string/predicate.hpp> // for startswith() and endswith()
82
- #include < boost/foreach.hpp>
83
81
#include < boost/program_options/detail/config_file.hpp>
84
- #include < boost/program_options/parsers.hpp>
85
82
#include < boost/thread.hpp>
86
83
#include < openssl/crypto.h>
87
84
#include < openssl/rand.h>
Original file line number Diff line number Diff line change 28
28
#include < vector>
29
29
30
30
#include < boost/signals2/signal.hpp>
31
- #include < boost/thread/exceptions.hpp>
32
31
33
32
static const bool DEFAULT_LOGTIMEMICROS = false ;
34
33
static const bool DEFAULT_LOGIPS = false ;
Original file line number Diff line number Diff line change 44
44
45
45
#include < boost/algorithm/string/replace.hpp>
46
46
#include < boost/algorithm/string/join.hpp>
47
- #include < boost/math/distributions/poisson.hpp>
48
47
#include < boost/thread.hpp>
49
48
50
49
#if defined(NDEBUG)
Original file line number Diff line number Diff line change 20
20
21
21
#include < boost/foreach.hpp>
22
22
#include < boost/thread.hpp>
23
- #include < boost/version.hpp>
24
23
25
24
//
26
25
// CDB
Original file line number Diff line number Diff line change 15
15
#include " validation.h"
16
16
#include " wallet/test/wallet_test_fixture.h"
17
17
18
- #include < boost/foreach.hpp>
19
18
#include < boost/test/unit_test.hpp>
20
19
#include < univalue.h>
21
20
Original file line number Diff line number Diff line change 18
18
19
19
#include < atomic>
20
20
21
- #include < boost/version.hpp>
22
21
#include < boost/foreach.hpp>
23
22
#include < boost/thread.hpp>
24
23
You can’t perform that action at this time.
0 commit comments