diff options
author | hyc <hyc@symas.com> | 2015-12-21 16:21:50 +0000 |
---|---|---|
committer | Howard Chu <hyc@symas.com> | 2015-12-21 16:23:59 +0000 |
commit | 9428d53d6f9bb4a269579cfbdc993e270726bdd4 (patch) | |
tree | 79d20217fbd6c307bdd8fdc15be421c3d883e52c /src/daemon/core.h | |
parent | Merge pull request #540 (diff) | |
download | monero-9428d53d6f9bb4a269579cfbdc993e270726bdd4.tar.xz |
Strip redundant includes
In particular, <boost/program_options.hpp> blows up daemon.cpp.obj,
making it too big to compile in debug mode on Win32. Even on a
release build it drops daemon.cpp.o on Linux from 31MB to 20MB.
This has no effect on the final linked binary size.
Diffstat (limited to 'src/daemon/core.h')
-rw-r--r-- | src/daemon/core.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/daemon/core.h b/src/daemon/core.h index c3d84454d..971d9c492 100644 --- a/src/daemon/core.h +++ b/src/daemon/core.h @@ -32,8 +32,6 @@ #include "cryptonote_core/cryptonote_core.h" #include "cryptonote_protocol/cryptonote_protocol_handler.h" #include "misc_log_ex.h" -#include <stdexcept> -#include <boost/program_options.hpp> #include "daemon/command_line_args.h" namespace daemonize |