diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-09-02 09:56:16 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-09-02 09:56:33 +0200 |
| commit | 6f939c9080a3bc7d5eb5d50f1b6ed42b0f3f692c (patch) | |
| tree | 0fb472a1003c9733761e4bd6ae5542ccc8290adf /src/init.cpp | |
| parent | Merge #8272: Make the dummy argument to getaddednodeinfo optional (diff) | |
| parent | C++11: s/boost::scoped_ptr/std::unique_ptr/ (diff) | |
| download | discoin-6f939c9080a3bc7d5eb5d50f1b6ed42b0f3f692c.tar.xz discoin-6f939c9080a3bc7d5eb5d50f1b6ed42b0f3f692c.zip | |
Merge #8629: C++11: s/boost::scoped_ptr/std::unique_ptr/
cdd79eb C++11: s/boost::scoped_ptr/std::unique_ptr/ (Jorge Timón)
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 9bd820852..27843fa88 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) { |