aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2016-09-02 09:56:16 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2016-09-02 09:56:33 +0200
commit6f939c9080a3bc7d5eb5d50f1b6ed42b0f3f692c (patch)
tree0fb472a1003c9733761e4bd6ae5542ccc8290adf /src/main.cpp
parent91990ee01dab794114b2525d72b3b581036b3570 (diff)
parentcdd79eb70fe163a92531a6f11c72bce6d228dac6 (diff)
downloadbitcoin-6f939c9080a3bc7d5eb5d50f1b6ed42b0f3f692c.tar.xz
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/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 565a98873e..aed9591f99 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -196,7 +196,7 @@ namespace {
*
* Memory used: 1.3 MB
*/
- boost::scoped_ptr<CRollingBloomFilter> recentRejects;
+ std::unique_ptr<CRollingBloomFilter> recentRejects;
uint256 hashRecentRejectsChainTip;
/** Blocks that are in flight, and that are in the queue to be downloaded. Protected by cs_main. */