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

Unified Diff: third_party/power_gadget/PowerGadgetLib.cpp

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
« no previous file with comments | « third_party/leveldatabase/env_chromium.cc ('k') | ui/base/dragdrop/os_exchange_data_provider_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/power_gadget/PowerGadgetLib.cpp
diff --git a/third_party/power_gadget/PowerGadgetLib.cpp b/third_party/power_gadget/PowerGadgetLib.cpp
index d7f20f1c556218d4f057a8438d8a4c7e908819e4..170085e37d6a1f7998017b75a697c60b7fca4ff2 100644
--- a/third_party/power_gadget/PowerGadgetLib.cpp
+++ b/third_party/power_gadget/PowerGadgetLib.cpp
@@ -104,6 +104,7 @@ static bool GetLibraryLocation(wstring& strLocation)
CIntelPowerGadgetLib::CIntelPowerGadgetLib(void) :
pInitialize(NULL),
pGetNumNodes(NULL),
+ pGetNumMsrs(NULL),
pGetMsrName(NULL),
pGetMsrFunc(NULL),
pGetIAFrequency(NULL),
@@ -117,8 +118,7 @@ CIntelPowerGadgetLib::CIntelPowerGadgetLib(void) :
pGetBaseFrequency(NULL),
pGetPowerData(NULL),
pStartLog(NULL),
- pStopLog(NULL),
- pGetNumMsrs(NULL)
+ pStopLog(NULL)
{
wstring strLocation;
if (GetLibraryLocation(strLocation) == false)
« no previous file with comments | « third_party/leveldatabase/env_chromium.cc ('k') | ui/base/dragdrop/os_exchange_data_provider_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698