Index: util/mach/exc_server_variants_test.cc |
diff --git a/util/mach/exc_server_variants_test.cc b/util/mach/exc_server_variants_test.cc |
index 598c3bcabf165b75f2973bf41ff87be8a4108e3f..57a55f7ec2d3044143662c3168907c37e2568fd8 100644 |
--- a/util/mach/exc_server_variants_test.cc |
+++ b/util/mach/exc_server_variants_test.cc |
@@ -268,7 +268,7 @@ struct __attribute__((packed, aligned(4))) ExceptionRaiseStateIdentityRequest { |
// The reply messages for exception_raise_state and |
// exception_raise_state_identity are identical. |
-typedef ExceptionRaiseStateReply ExceptionRaiseStateIdentityReply; |
+using ExceptionRaiseStateIdentityReply = ExceptionRaiseStateReply; |
struct __attribute__((packed, aligned(4))) MachExceptionRaiseRequest { |
mach_msg_header_t Head; |
@@ -302,7 +302,7 @@ struct __attribute__((packed, aligned(4))) MachExceptionRaiseRequest { |
// The reply messages for exception_raise and mach_exception_raise are |
// identical. |
-typedef ExceptionRaiseReply MachExceptionRaiseReply; |
+using MachExceptionRaiseReply = ExceptionRaiseReply; |
struct __attribute__((packed, aligned(4))) MachExceptionRaiseStateRequest { |
mach_msg_header_t Head; |
@@ -338,7 +338,7 @@ struct __attribute__((packed, aligned(4))) MachExceptionRaiseStateRequest { |
// The reply messages for exception_raise_state and mach_exception_raise_state |
// are identical. |
-typedef ExceptionRaiseStateReply MachExceptionRaiseStateReply; |
+using MachExceptionRaiseStateReply = ExceptionRaiseStateReply; |
struct __attribute__((packed, |
aligned(4))) MachExceptionRaiseStateIdentityRequest { |
@@ -382,7 +382,7 @@ struct __attribute__((packed, |
// The reply messages for exception_raise_state_identity and |
// mach_exception_raise_state_identity are identical. |
-typedef ExceptionRaiseStateIdentityReply MachExceptionRaiseStateIdentityReply; |
+using MachExceptionRaiseStateIdentityReply = ExceptionRaiseStateIdentityReply; |
// InvalidRequest and BadIDErrorReply are used to test that |
// UniversalMachExcServer deals appropriately with messages that it does not |