std::auto_ptr -> epics::auto_ptr

This commit is contained in:
Michael Davidsaver
2017-11-06 12:37:42 -06:00
parent f91b593aea
commit 0fde239f23
4 changed files with 22 additions and 32 deletions

View File

@@ -460,7 +460,7 @@ static void threadRunner(void* usr)
/// owned by a shared_ptr instance.
void RPCServer::runInNewThread(int seconds)
{
std::auto_ptr<ThreadRunnerParam> param(new ThreadRunnerParam());
epics::auto_ptr<ThreadRunnerParam> param(new ThreadRunnerParam());
param->server = shared_from_this();
param->timeToRun = seconds;