aboutsummaryrefslogtreecommitdiff
path: root/src/txdb.h
diff options
context:
space:
mode:
authorJorge Timón <jtimon@jtimon.cc>2016-08-30 22:41:56 +0200
committerJorge Timón <jtimon@jtimon.cc>2016-09-01 19:05:07 +0200
commitcdd79eb70fe163a92531a6f11c72bce6d228dac6 (patch)
tree9f615eba78aece231ab3fc37e0252c971b70ac7c /src/txdb.h
parent2b23dbaee5b88d7237144e14eff01391e2cc201d (diff)
downloadbitcoin-cdd79eb70fe163a92531a6f11c72bce6d228dac6.tar.xz
C++11: s/boost::scoped_ptr/std::unique_ptr/
Diffstat (limited to 'src/txdb.h')
-rw-r--r--src/txdb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txdb.h b/src/txdb.h
index 5b98d2792c..adb3f66327 100644
--- a/src/txdb.h
+++ b/src/txdb.h
@@ -92,7 +92,7 @@ public:
private:
CCoinsViewDBCursor(CDBIterator* pcursorIn, const uint256 &hashBlockIn):
CCoinsViewCursor(hashBlockIn), pcursor(pcursorIn) {}
- boost::scoped_ptr<CDBIterator> pcursor;
+ std::unique_ptr<CDBIterator> pcursor;
std::pair<char, uint256> keyTmp;
friend class CCoinsViewDB;