summaryrefslogtreecommitdiff
path: root/ACE/tests/Compiler_Features_38_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/Compiler_Features_38_Test.cpp')
-rw-r--r--ACE/tests/Compiler_Features_38_Test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/tests/Compiler_Features_38_Test.cpp b/ACE/tests/Compiler_Features_38_Test.cpp
index 1c2f901bb7d..402fdd4816e 100644
--- a/ACE/tests/Compiler_Features_38_Test.cpp
+++ b/ACE/tests/Compiler_Features_38_Test.cpp
@@ -11,7 +11,7 @@ class Foo_T
{
public:
Foo_T () : member() {};
- typedef T& T_elem;
+ using T_elem = T &;
T_elem operator[] (ACE_CDR::ULong) { return member; }
private:
T member;
@@ -21,7 +21,7 @@ struct Foo2
{
long i;
};
-typedef Foo_T<Foo2> Foo2Seq;
+using Foo2Seq = Foo_T<Foo2>;
int
run_main (int, ACE_TCHAR *[])