Disable werror for Dear ImGui

GCC 7.5:
../../subprojects/imgui-1.81/imgui.h:1642:80: warning: assuming signed overflow does not occur when assuming that (X - c) <= X is always true [-Wstrict-overflow]
     inline T&           operator[](int i)                   { IM_ASSERT(i >= 0 && i < Size); return Data[i]; }
pull/758/head
jackun 2 years ago
parent 663bbd05a6
commit 77bb7fd756
No known key found for this signature in database
GPG Key ID: 119DB3F1D05A9ED3

@ -218,6 +218,7 @@ util_files = files(
imgui_options = [
'default_library=static',
'werror=false',
# use 'auto_features=disabled' once available: https://github.com/mesonbuild/meson/issues/5320
'dx9=disabled',
'dx10=disabled',

Loading…
Cancel
Save