aboutsummaryrefslogtreecommitdiff
path: root/src/daemon
diff options
context:
space:
mode:
authorZachary Michaels <mikezackles@gmail.com>2014-09-15 16:28:27 -0400
committerRiccardo Spagni <ric@spagni.net>2014-09-15 23:14:24 +0200
commit59ab569da1fa16d379f519f5480c03e39f05b44d (patch)
tree30589ebd6f5050cbe6e4e34e8ca4a5240d00a0a7 /src/daemon
parentanother fix for CMake empty vars (diff)
downloadmonero-59ab569da1fa16d379f519f5480c03e39f05b44d.tar.xz
Give up on brace initializers in initializer lists (MSVC bug)
Diffstat (limited to 'src/daemon')
-rw-r--r--src/daemon/daemon_commands_handler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/daemon_commands_handler.h b/src/daemon/daemon_commands_handler.h
index 58112e166..869c2adf7 100644
--- a/src/daemon/daemon_commands_handler.h
+++ b/src/daemon/daemon_commands_handler.h
@@ -55,7 +55,7 @@ public:
, bool testnet
)
: m_srv(srv)
- , m_testnet {testnet}
+ , m_testnet(testnet)
{
m_cmd_binder.set_handler("help", boost::bind(&daemon_cmmands_handler::help, this, _1), "Show this help");
m_cmd_binder.set_handler("print_pl", boost::bind(&daemon_cmmands_handler::print_pl, this, _1), "Print peer list");