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

Unified Diff: ui/accessibility/accessibility.gyp

Issue 1204293002: ui: accessibility: remove -Wunused-function for Atk (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comment to gyp file 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/accessibility/accessibility.gyp
diff --git a/ui/accessibility/accessibility.gyp b/ui/accessibility/accessibility.gyp
index 6e959e98622f3619f99d9a1ca0243bb18643a751..cdb7cb04bf1aa5508ae34ccde1349f25e187de8a 100644
--- a/ui/accessibility/accessibility.gyp
+++ b/ui/accessibility/accessibility.gyp
@@ -73,6 +73,10 @@
'clang_warning_flags': [
# glib uses the pre-c++11 typedef-as-static_assert hack.
'-Wno-unused-local-typedefs',
+ # G_DEFINE_TYPE automatically generates a
+ # *get_instance_private inline function after glib 2.37.
+ # That's unused. Prevent to complain about it.
+ '-Wno-unused-function',
],
},
}],
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698