mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-12 03:45:34 +00:00
fix(developer): add -Wno-ignored-qualifiers flag to allow casting to override warnings with return type casts
This commit is contained in:
parent
272b3b1532
commit
1fa13c2b83
1 changed files with 2 additions and 1 deletions
|
|
@ -12,7 +12,8 @@ lib_links = []
|
|||
if cpp_compiler.get_id() == 'gcc' or cpp_compiler.get_id() == 'clang'
|
||||
warns += [
|
||||
'-Wall',
|
||||
'-Wextra'
|
||||
'-Wextra',
|
||||
'-Wno-ignored-qualifiers'
|
||||
]
|
||||
flags += ['-D__cdecl= ']
|
||||
endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue