summaryrefslogtreecommitdiff
path: root/ACE/tests/Compiler_Features_05_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/Compiler_Features_05_Test.cpp')
-rw-r--r--ACE/tests/Compiler_Features_05_Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/tests/Compiler_Features_05_Test.cpp b/ACE/tests/Compiler_Features_05_Test.cpp
index 3caa89031f2..c67992ba4a3 100644
--- a/ACE/tests/Compiler_Features_05_Test.cpp
+++ b/ACE/tests/Compiler_Features_05_Test.cpp
@@ -25,7 +25,7 @@ run_main (int, ACE_TCHAR *[])
int status = 0;
// Create a simple queue ...
- typedef std::queue<int> collection;
+ using collection = std::queue<int>;
// ... if the previous line compiles, the default template
// parameters work. The declaration of queue<> is something like:
// template<typename T, typename Sequence = deque<T> >