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

Unified Diff: client/crashpad_info.h

Issue 1123643004: win: Fix multiple definition at link time for kSignature (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « no previous file | client/crashpad_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/crashpad_info.h
diff --git a/client/crashpad_info.h b/client/crashpad_info.h
index ecd1195bea99b6ce71d233c4ac1d60aecde7128f..5ce9fb8e8fd97ec29fdc3d393b48fe9643846485 100644
--- a/client/crashpad_info.h
+++ b/client/crashpad_info.h
@@ -93,7 +93,9 @@ struct CrashpadInfo {
system_crash_reporter_forwarding_ = system_crash_reporter_forwarding;
}
- static const uint32_t kSignature = 'CPad';
+ enum : uint32_t {
+ kSignature = 'CPad',
+ };
private:
// The compiler won’t necessarily see anyone using these fields, but it
« no previous file with comments | « no previous file | client/crashpad_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698