Merge #8629: C++11: s/boost::scoped_ptr/std::unique_ptr/

cdd79eb C++11: s/boost::scoped_ptr/std::unique_ptr/ (Jorge Timón)
This commit is contained in:
Wladimir J. van der Laan
2016-09-02 09:56:16 +02:00
9 changed files with 11 additions and 12 deletions
+1 -1
View File
@@ -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. */