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/main.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/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 565a98873..aed9591f9 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. */ |