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

Unified Diff: ui/base/win/atl_module.h

Issue 1220133003: Fixed all unused-variable Clang warnings on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@iaccessible2-fix-gn
Patch Set: Rebase. Created 5 years, 5 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: ui/base/win/atl_module.h
diff --git a/ui/base/win/atl_module.h b/ui/base/win/atl_module.h
index 1d1adb4ca185e9a251e2e9e804a6e4695f56d246..8b696977f75abbbd8446792c69e296f678544db2 100644
--- a/ui/base/win/atl_module.h
+++ b/ui/base/win/atl_module.h
@@ -9,6 +9,8 @@
#include <atlcom.h>
#include "base/basictypes.h"
+#include "base/compiler_specific.h"
+#include "base/macros.h"
namespace ui {
namespace win {
@@ -28,6 +30,7 @@ static void CreateATLModuleIfNeeded() {
if (_pAtlModule == NULL) {
// This creates the module and automatically updates _pAtlModule.
CR_DEFINE_STATIC_LOCAL(CComModule, module, ());
+ ALLOW_UNUSED_LOCAL(module);
}
}

Powered by Google App Engine
This is Rietveld 408576698