diff options
| author | Riccardo Spagni <ric@spagni.net> | 2015-12-22 10:29:04 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2015-12-22 10:29:29 +0200 |
| commit | 40880d7cb8ea9b86d18ca97960291d3965f23f51 (patch) | |
| tree | edb5e30c9e7563ecdb447aa6edc36e945804b209 /src/daemon/daemon.cpp | |
| parent | 21053c64201e9cd96d1c6c873eedc302d6685274 (diff) | |
| parent | 9428d53d6f9bb4a269579cfbdc993e270726bdd4 (diff) | |
| download | monzero-core-40880d7cb8ea9b86d18ca97960291d3965f23f51.tar.gz monzero-core-40880d7cb8ea9b86d18ca97960291d3965f23f51.tar.xz monzero-core-40880d7cb8ea9b86d18ca97960291d3965f23f51.zip | |
Merge pull request #552
9428d53 Strip redundant includes (hyc)
Diffstat (limited to 'src/daemon/daemon.cpp')
| -rw-r--r-- | src/daemon/daemon.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/daemon/daemon.cpp b/src/daemon/daemon.cpp index 8a1f08c10..eda1caa44 100644 --- a/src/daemon/daemon.cpp +++ b/src/daemon/daemon.cpp @@ -28,6 +28,9 @@ // // Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers +#include <memory> +#include <stdexcept> +#include "misc_log_ex.h" #include "daemon/daemon.h" #include "common/util.h" @@ -36,15 +39,12 @@ #include "daemon/protocol.h" #include "daemon/rpc.h" #include "daemon/command_server.h" -#include "misc_log_ex.h" #include "version.h" #include "../../contrib/epee/include/syncobj.h" using namespace epee; -#include <boost/program_options.hpp> #include <functional> -#include <memory> unsigned int epee::g_test_dbg_lock_sleep = 0; |
