summaryrefslogtreecommitdiff
path: root/ACE/tests/Future_Set_Test.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 08:51:53 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 08:51:53 +0100
commit1bfb8257580a2a84da95ca00863f356474eca77a (patch)
treeab7fc58af54e22210eea3d678f86d1c395f295dc /ACE/tests/Future_Set_Test.cpp
parent4584f1597edc14464b396c712b517543d18fb0b6 (diff)
downloadATCD-1bfb8257580a2a84da95ca00863f356474eca77a.tar.gz
Use std::unique_ptr
Diffstat (limited to 'ACE/tests/Future_Set_Test.cpp')
-rw-r--r--ACE/tests/Future_Set_Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/tests/Future_Set_Test.cpp b/ACE/tests/Future_Set_Test.cpp
index bd5706e3da7..2549e25cd1c 100644
--- a/ACE/tests/Future_Set_Test.cpp
+++ b/ACE/tests/Future_Set_Test.cpp
@@ -283,7 +283,7 @@ Prime_Scheduler::svc (void)
{
// Dequeue the next method request (we use an auto pointer in
// case an exception is thrown in the <call>).
- unique_ptr<ACE_Method_Request> mo (this->activation_queue_.dequeue ());
+ std::unique_ptr<ACE_Method_Request> mo (this->activation_queue_.dequeue ());
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("(%t) calling method request\n")));