diff options
author | Bob McElrath <bob@mcelrath.org> | 2015-10-28 22:25:32 -0400 |
---|---|---|
committer | Bob McElrath <bob@mcelrath.org> | 2015-10-28 22:25:32 -0400 |
commit | a83f3c2426429ddf3e38cfc26204398c097a23d4 (patch) | |
tree | 8c259be06cfe90d76057d466fda75bc441645946 /src/rpcserver.cpp | |
parent | 8f3b3cdee497b8a1d7c6a7279e7bb13435527b60 (diff) |
Add explicit shared_ptr constructor due to C++11 error
Diffstat (limited to 'src/rpcserver.cpp')
-rw-r--r-- | src/rpcserver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp index fa60f8c833..8bda5a0373 100644 --- a/src/rpcserver.cpp +++ b/src/rpcserver.cpp @@ -563,7 +563,7 @@ void RPCRunLater(const std::string& name, boost::function<void(void)> func, int6 deadlineTimers.erase(name); RPCTimerInterface* timerInterface = timerInterfaces[0]; LogPrint("rpc", "queue run of timer %s in %i seconds (using %s)\n", name, nSeconds, timerInterface->Name()); - deadlineTimers.insert(std::make_pair(name, timerInterface->NewTimer(func, nSeconds*1000))); + deadlineTimers.insert(std::make_pair(name, boost::shared_ptr<RPCTimerBase>(timerInterface->NewTimer(func, nSeconds*1000)))); } const CRPCTable tableRPC; |