Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1045)

Unified Diff: third_party/crashpad/crashpad/snapshot/mac/process_types/traits.h

Issue 2236493004: Update Crashpad to 56b14bceefcec03fc11b3222c435522922f65640 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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; \
}; \
} \
} \

Powered by Google App Engine
This is Rietveld 408576698