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

Unified Diff: third_party/crashpad/crashpad/minidump/minidump_extensions.h

Issue 2932053002: Use C++11 alignment primitives (Closed)
Patch Set: Format Created 3 years, 6 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/minidump/minidump_extensions.h
diff --git a/third_party/crashpad/crashpad/minidump/minidump_extensions.h b/third_party/crashpad/crashpad/minidump/minidump_extensions.h
index 245ef8b5baa563f4e14a7f64e47a6b94b3765490..0cad9d543523a2bfd349fe6032080f1d04c1c615 100644
--- a/third_party/crashpad/crashpad/minidump/minidump_extensions.h
+++ b/third_party/crashpad/crashpad/minidump/minidump_extensions.h
@@ -102,7 +102,7 @@ enum MinidumpStreamType : uint32_t {
//! file.
//!
//! \sa MINIDUMP_STRING
-struct ALIGNAS(4) PACKED MinidumpUTF8String {
+struct alignas(4) PACKED MinidumpUTF8String {
scottmg 2017/06/09 19:49:01 There's a bunch more ALIGNAS in this file. I can
// The field names do not conform to typical style, they match the names used
// in MINIDUMP_STRING. This makes it easier to operate on MINIDUMP_STRING (for
// UTF-16 strings) and MinidumpUTF8String using templates.

Powered by Google App Engine
This is Rietveld 408576698