mirror of
https://github.com/monero-project/monero.git
synced 2025-07-23 03:00:43 -04:00
replace std::auto_ptr with std::unique_ptr
The former is obsolete
This commit is contained in:
parent
f7d41d6e28
commit
01e92ebdb0
2 changed files with 3 additions and 3 deletions
|
@ -2059,7 +2059,7 @@ bool Blockchain::check_tx_inputs(const transaction& tx, uint64_t* pmax_used_bloc
|
|||
boost::asio::io_service ioservice;
|
||||
boost::thread_group threadpool;
|
||||
|
||||
std::auto_ptr < boost::asio::io_service::work > work(new boost::asio::io_service::work(ioservice));
|
||||
std::unique_ptr < boost::asio::io_service::work > work(new boost::asio::io_service::work(ioservice));
|
||||
if(threads > 1)
|
||||
{
|
||||
for (int i = 0; i < threads; i++)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue