summaryrefslogtreecommitdiff
path: root/ACE/tests/Lazy_Map_Manager_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/Lazy_Map_Manager_Test.cpp')
-rw-r--r--ACE/tests/Lazy_Map_Manager_Test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/tests/Lazy_Map_Manager_Test.cpp b/ACE/tests/Lazy_Map_Manager_Test.cpp
index 7af3f0b0675..22bae652ccc 100644
--- a/ACE/tests/Lazy_Map_Manager_Test.cpp
+++ b/ACE/tests/Lazy_Map_Manager_Test.cpp
@@ -19,7 +19,7 @@
// Simple map manager.
-typedef ACE_Map_Manager<int, int, ACE_Null_Mutex> LAZY_MAP;
+using LAZY_MAP = ACE_Map_Manager<int, int, ACE_Null_Mutex>;
// Displaying the contents of a map manager.
@@ -64,7 +64,7 @@ display_map (LAZY_MAP &map)
// Test for map manager.
void
-map_test (void)
+map_test ()
{
// Map of size 3.
LAZY_MAP map (3);
@@ -163,7 +163,7 @@ map_test (void)
}
// Simple active map manager.
-typedef ACE_Active_Map_Manager<int> ACTIVE_MAP;
+using ACTIVE_MAP = ACE_Active_Map_Manager<int>;
// Displaying the contents of an active map manager.
@@ -209,7 +209,7 @@ display_map (ACTIVE_MAP &map)
// Test for active map manager.
void
-active_map_test (void)
+active_map_test ()
{
// Map of size 3.
ACTIVE_MAP map (3);