Skip to content
Snippets Groups Projects
Commit f3a1c234 authored by Simon McVittie's avatar Simon McVittie
Browse files

build: Explicitly disable -Wpedantic


We're using GLib, and GLib explicitly doesn't support pedantic Standard C
compilers: it assumes and requires the ability to cast between function
pointers and data pointers.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent 8c1be0f2
No related branches found
No related tags found
1 merge request!82Enable and squash compiler warnings
......@@ -99,6 +99,7 @@ warning_cxxflags = warning_flags + [
no_warning_flags = [
'missing-field-initializers',
'pedantic',
'sign-compare',
'unused-local-typedefs',
'unused-parameter',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment