summaryrefslogtreecommitdiff
path: root/ACE/tests/Compiler_Features_31_Test.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 17:10:22 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 17:10:22 +0100
commit1e53fe7a08a386009ce01221320d33701d585f9c (patch)
tree5650c9749db2de9a2087f81a50158f0dfb8bdb35 /ACE/tests/Compiler_Features_31_Test.cpp
parente05eb413c59f589e7d4192af7e12eb777017bd70 (diff)
downloadATCD-1e53fe7a08a386009ce01221320d33701d585f9c.tar.gz
Modernize ACE tests with using instead of typedef
Diffstat (limited to 'ACE/tests/Compiler_Features_31_Test.cpp')
-rw-r--r--ACE/tests/Compiler_Features_31_Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/tests/Compiler_Features_31_Test.cpp b/ACE/tests/Compiler_Features_31_Test.cpp
index 349ebca71d5..f0665819fad 100644
--- a/ACE/tests/Compiler_Features_31_Test.cpp
+++ b/ACE/tests/Compiler_Features_31_Test.cpp
@@ -15,7 +15,7 @@ namespace A
template <typename T>
struct abstractbase_traits
{
- typedef abstractbase_reference<T> ref_type;
+ using ref_type = abstractbase_reference<T>;
static ref_type narrow(abstractbase_reference<C::AbstractBase>);
static ref_type narrow2(abstractbase_reference<C::AbstractBase>);
};