summaryrefslogtreecommitdiff
path: root/ACE/tests/Unbounded_Set_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/Unbounded_Set_Test.cpp')
-rw-r--r--ACE/tests/Unbounded_Set_Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/tests/Unbounded_Set_Test.cpp b/ACE/tests/Unbounded_Set_Test.cpp
index b551735de33..8c9e18875f8 100644
--- a/ACE/tests/Unbounded_Set_Test.cpp
+++ b/ACE/tests/Unbounded_Set_Test.cpp
@@ -100,7 +100,7 @@ run_main (int, ACE_TCHAR *[])
// Test assigment of sets.
// To do that, we also test some of the iterator methods.
- typedef ACE_Unbounded_Set<MyNode> MySet;
+ using MySet = ACE_Unbounded_Set<MyNode>;
MySet ubs2 = ubs; // Test a typedef of a set.
if (ubs2.size() != ubs.size())
{