diff options
author | Jorge Timón <jtimon@jtimon.cc> | 2016-08-30 22:41:56 +0200 |
---|---|---|
committer | Jorge Timón <jtimon@jtimon.cc> | 2016-09-01 19:05:07 +0200 |
commit | cdd79eb70fe163a92531a6f11c72bce6d228dac6 (patch) | |
tree | 9f615eba78aece231ab3fc37e0252c971b70ac7c /src/init.cpp | |
parent | 2b23dbaee5b88d7237144e14eff01391e2cc201d (diff) |
C++11: s/boost::scoped_ptr/std::unique_ptr/
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 9bd820852c..27843fa882 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -162,7 +162,7 @@ public: static CCoinsViewDB *pcoinsdbview = NULL; static CCoinsViewErrorCatcher *pcoinscatcher = NULL; -static boost::scoped_ptr<ECCVerifyHandle> globalVerifyHandle; +static std::unique_ptr<ECCVerifyHandle> globalVerifyHandle; void Interrupt(boost::thread_group& threadGroup) { |