diff options
author | Sam Thursfield <sam.thursfield@codethink.co.uk> | 2021-05-26 17:30:02 +0200 |
---|---|---|
committer | Sam Thursfield <sam.thursfield@codethink.co.uk> | 2021-05-26 17:56:30 +0200 |
commit | a747836b3593e3c0b8428a965eea7a70a8feda9a (patch) | |
tree | af8a8d9af56ee50112dbe3afb4f7b52ee370f80b /meson.build | |
parent | 020d60fe06b195895f47bef9e53c8dffdb24f374 (diff) | |
download | tracker-a747836b3593e3c0b8428a965eea7a70a8feda9a.tar.gz |
build: Disable GCC pedantic warnings
This flag has detected some bugs and resulted in a number of good code
cleanups
However, some of these warnings cannot neatly be fixed, as GLib depends on
converting function pointers to (void *) and back again.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 44e8fbbfc..b786643c4 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,7 @@ project('tracker', 'c', 'vala', meson_version: '>=0.51', default_options: [ 'c_std=c99', - 'warning_level=3']) + 'warning_level=2']) gnome = import('gnome') i18n = import('i18n') |