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

Unified Diff: chrome/browser/install_verification/win/module_info.h

Issue 1210013007: clang/win: Fix warnings to prepare for building without -Wno-reorder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clang-unsequenced
Patch Set: Created 5 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: chrome/browser/install_verification/win/module_info.h
diff --git a/chrome/browser/install_verification/win/module_info.h b/chrome/browser/install_verification/win/module_info.h
index f2b4a2a3d1f360e6de4533eb2e033161370ac13e..2da0b1a9b3eec70c49f9353a4fd29cce6024f785 100644
--- a/chrome/browser/install_verification/win/module_info.h
+++ b/chrome/browser/install_verification/win/module_info.h
@@ -16,10 +16,9 @@ struct ModuleInfo {
ModuleInfo(const base::char16* const module_name,
uintptr_t module_base_address,
uint32_t module_size)
- : base_address(module_base_address),
- size(module_size),
- name(module_name) {
- }
+ : name(module_name),
+ base_address(module_base_address),
+ size(module_size) {}
// Sorts modules by their base address.
bool operator< (const ModuleInfo& compare) const {
« no previous file with comments | « chrome/browser/enumerate_modules_model_win.cc ('k') | chrome/browser/media_galleries/win/mtp_device_delegate_impl_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698