summaryrefslogtreecommitdiff
path: root/ACE/tests/Compiler_Features_37_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/Compiler_Features_37_Test.cpp')
-rw-r--r--ACE/tests/Compiler_Features_37_Test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/tests/Compiler_Features_37_Test.cpp b/ACE/tests/Compiler_Features_37_Test.cpp
index 5d88aee0033..8fe14fda578 100644
--- a/ACE/tests/Compiler_Features_37_Test.cpp
+++ b/ACE/tests/Compiler_Features_37_Test.cpp
@@ -12,9 +12,9 @@ class my_map
public:
my_map () : capacity_ (0), nodes_(0) {}
~my_map ();
- typedef key key_type;
- typedef value data_type;
- typedef std::pair<key, value> value_type;
+ using key_type = key;
+ using data_type = value;
+ using value_type = std::pair<key, value>;
size_t capacity_;
value_type* nodes_;
};