| Index: third_party/crashpad/crashpad/snapshot/mac/process_types/traits.h
|
| diff --git a/third_party/crashpad/crashpad/snapshot/mac/process_types/traits.h b/third_party/crashpad/crashpad/snapshot/mac/process_types/traits.h
|
| index 0b4d2731a195c55220ecff8dcb91b72cc4e968f7..fec234d0bcde73d1246c939fdeeea8b54a6d40d0 100644
|
| --- a/third_party/crashpad/crashpad/snapshot/mac/process_types/traits.h
|
| +++ b/third_party/crashpad/crashpad/snapshot/mac/process_types/traits.h
|
| @@ -22,9 +22,9 @@
|
| // DECLARE_PROCESS_TYPE_TRAITS_CLASS before #including this file again and after
|
| // the last #include of this file.
|
| //
|
| -// |Reserved| is used for padding fields that may be zero-length, and thus
|
| +// |Reserved*| are used for padding fields that may be zero-length, and thus
|
| // __VA_ARGS__, which is intended to set the alignment of the 64-bit types, is
|
| -// not used for that type alias.
|
| +// not used for those type aliases.
|
| #define DECLARE_PROCESS_TYPE_TRAITS_CLASS(traits_name, lp_bits, ...) \
|
| namespace crashpad { \
|
| namespace process_types { \
|
| @@ -35,7 +35,8 @@
|
| using Pointer = uint##lp_bits##_t __VA_ARGS__; \
|
| using IntPtr = int##lp_bits##_t __VA_ARGS__; \
|
| using UIntPtr = uint##lp_bits##_t __VA_ARGS__; \
|
| - using Reserved64Only = Reserved64Only##lp_bits; \
|
| + using Reserved32_64Only = Reserved32_64Only##lp_bits; \
|
| + using Reserved64_64Only = Reserved64_64Only##lp_bits; \
|
| }; \
|
| } \
|
| } \
|
|
|