summaryrefslogtreecommitdiff
path: root/ACE/tests/Compiler_Features_06_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/Compiler_Features_06_Test.cpp')
-rw-r--r--ACE/tests/Compiler_Features_06_Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/tests/Compiler_Features_06_Test.cpp b/ACE/tests/Compiler_Features_06_Test.cpp
index 2e68a987b72..3fde520fb71 100644
--- a/ACE/tests/Compiler_Features_06_Test.cpp
+++ b/ACE/tests/Compiler_Features_06_Test.cpp
@@ -30,7 +30,7 @@ run_main (int, ACE_TCHAR *[])
int status = 0;
// Create a simple list ...
- typedef std::set<int,std::greater<int> > collection;
+ using collection = std::set<int, std::greater<int>>;
collection c;
// ... insert some elements ...