aboutsummaryrefslogtreecommitdiff
path: root/src/miner.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2016-04-28 13:40:20 +0200
committerWladimir J. van der Laan <[email protected]>2016-04-28 13:43:32 +0200
commit07e4edb056249e017b0e5a4783e4452ce892b52d (patch)
tree6122537963799ff7bcfaf6af24d720b7fce5e5fe /src/miner.cpp
parentchain: define enum used as bit field as uint32_t (diff)
downloaddiscoin-07e4edb056249e017b0e5a4783e4452ce892b52d.tar.xz
discoin-07e4edb056249e017b0e5a4783e4452ce892b52d.zip
auto_ptr → unique_ptr
Change the few occurrences of the deprecated `auto_ptr` to c++11 `unique_ptr`. Silences the deprecation warnings. Also add a missing `std::` for consistency.
Diffstat (limited to 'src/miner.cpp')
-rw-r--r--src/miner.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/miner.cpp b/src/miner.cpp
index ef8fd4db4..eaf29a767 100644
--- a/src/miner.cpp
+++ b/src/miner.cpp
@@ -74,7 +74,7 @@ int64_t UpdateTime(CBlockHeader* pblock, const Consensus::Params& consensusParam
CBlockTemplate* CreateNewBlock(const CChainParams& chainparams, const CScript& scriptPubKeyIn)
{
// Create new block
- auto_ptr<CBlockTemplate> pblocktemplate(new CBlockTemplate());
+ std::unique_ptr<CBlockTemplate> pblocktemplate(new CBlockTemplate());
if(!pblocktemplate.get())
return NULL;
CBlock *pblock = &pblocktemplate->block; // pointer for convenience