Skip to content

Commit 93634f2

Browse files
committed
Remove dead code.
1 parent 8089ef1 commit 93634f2

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed

include/bitcoin/node/configuration.hpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,7 @@
1919
#ifndef LIBBITCOIN_NODE_CONFIGURATION_HPP
2020
#define LIBBITCOIN_NODE_CONFIGURATION_HPP
2121

22-
#include <cstddef>
23-
#include <string>
2422
#include <boost/filesystem.hpp>
25-
#include <boost/program_options.hpp>
2623
#include <bitcoin/blockchain.hpp>
2724
#include <bitcoin/network.hpp>
2825
#include <bitcoin/node/define.hpp>
@@ -47,7 +44,6 @@ class BCN_API configuration
4744
{
4845
public:
4946
configuration(config::settings context);
50-
configuration(const configuration& other);
5147

5248
/// Options.
5349
bool help;

src/configuration.cpp

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,5 @@ configuration::configuration(config::settings context)
3838
{
3939
}
4040

41-
// Copy constructor.
42-
configuration::configuration(const configuration& other)
43-
: help(other.help),
44-
initchain(other.initchain),
45-
settings(other.settings),
46-
version(other.version),
47-
file(other.file),
48-
node(other.node),
49-
chain(other.chain),
50-
database(other.database),
51-
network(other.network)
52-
{
53-
}
54-
5541
} // namespace node
5642
} // namespace libbitcoin

0 commit comments

Comments
 (0)