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

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: 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: ui/base/win/atl_module.h
diff --git a/ui/base/win/atl_module.h b/ui/base/win/atl_module.h
index 1d1adb4ca185e9a251e2e9e804a6e4695f56d246..813e92d3026b9e53fad038a06f811d8bc0ce4059 100644
--- a/ui/base/win/atl_module.h
+++ b/ui/base/win/atl_module.h
@@ -28,6 +28,7 @@ static void CreateATLModuleIfNeeded() {
if (_pAtlModule == NULL) {
// This creates the module and automatically updates _pAtlModule.
CR_DEFINE_STATIC_LOCAL(CComModule, module, ());
+ static_cast<void>(module); // Suppress unused variable warnings.
Nico 2015/07/02 17:34:26 ALLOW_UNUSED_LOCAL(module);
Matt Giuca 2015/07/03 03:46:29 Done.
}
}

Powered by Google App Engine
This is Rietveld 408576698