Anyone else running into compiling issues?
miner.cpp: In function ‘CBlock* CreateNewBlock(CReserveKey&, bool, int64_t*)’:
miner.cpp:106:5: error: ‘unique_ptr’ is not a member of ‘std’
std::unique_ptr pblock(new CBlock());
^
miner.cpp:106:5: note: suggested alternatives:
In file included from /usr/include/boost/thread/csbl/memory/unique_ptr.hpp:16:0,
from /usr/include/boost/thread/future.hpp:40,
from /usr/include/boost/thread.hpp:24,
from util.h:24,
from core.h:10,
from main.h:8,
from txdb-leveldb.h:9,
from txdb.h:9,
from miner.cpp:7:
/usr/include/boost/move/unique_ptr.hpp:346:7: note: ‘boost::movelib::unique_ptr’
class unique_ptr
^
/usr/include/boost/move/unique_ptr.hpp:346:7: note: ‘boost::movelib::unique_ptr’
miner.cpp:106:27: error: expected primary-expression before ‘>’ token
std::unique_ptr pblock(new CBlock());
^
miner.cpp:106:48: error: ‘pblock’ was not declared in this scope
std::unique_ptr pblock(new CBlock());
^
miner.cpp: In function ‘void ThreadStakeMiner(CWallet*)’:
miner.cpp:558:9: error: ‘unique_ptr’ is not a member of ‘std’
std::unique_ptr pblock(CreateNewBlock(reservekey, true, &nFees));
^
miner.cpp:558:9: note: suggested alternatives:
In file included from /usr/include/boost/thread/csbl/memory/unique_ptr.hpp:16:0,
from /usr/include/boost/thread/future.hpp:40,
from /usr/include/boost/thread.hpp:24,
from util.h:24,
from core.h:10,
from main.h:8,
from txdb-leveldb.h:9,
from txdb.h:9,
from miner.cpp:7:
/usr/include/boost/move/unique_ptr.hpp:346:7: note: ‘boost::movelib::unique_ptr’
class unique_ptr
^
/usr/include/boost/move/unique_ptr.hpp:346:7: note: ‘boost::movelib::unique_ptr’
miner.cpp:558:31: error: expected primary-expression before ‘>’ token
std::unique_ptr pblock(CreateNewBlock(reservekey, true, &nFees));
^
miner.cpp:558:80: error: ‘pblock’ was not declared in this scope
std::unique_ptr pblock(CreateNewBlock(reservekey, true, &nFees));
^
miner.cpp: In function ‘void RoyalEmpireCoinMiner(CWallet*)’:
miner.cpp:608:9: error: ‘unique_ptr’ is not a member of ‘std’
std::unique_ptr pblocktemplate(CreateNewBlock(reservekey, false, &nFees));
^
miner.cpp:608:9: note: suggested alternatives:
In file included from /usr/include/boost/thread/csbl/memory/unique_ptr.hpp:16:0,
from /usr/include/boost/thread/future.hpp:40,
from /usr/include/boost/thread.hpp:24,
from util.h:24,
from core.h:10,
from main.h:8,
from txdb-leveldb.h:9,
from txdb.h:9,
from miner.cpp:7:
/usr/include/boost/move/unique_ptr.hpp:346:7: note: ‘boost::movelib::unique_ptr’
class unique_ptr
^
/usr/include/boost/move/unique_ptr.hpp:346:7: note: ‘boost::movelib::unique_ptr’
miner.cpp:608:31: error: expected primary-expression before ‘>’ token
std::unique_ptr pblocktemplate(CreateNewBlock(reservekey, false, &nFees));
^
miner.cpp:608:89: error: ‘pblocktemplate’ was not declared in this scope
std::unique_ptr pblocktemplate(CreateNewBlock(reservekey, false, &nFees));
^
makefile.unix:179: recipe for target 'obj/miner.o' failed
make: *** [obj/miner.o] Error 1