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