aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-09-26 21:26:46 +0200
committerDavid Robillard <d@drobilla.net>2020-09-26 21:26:46 +0200
commit9a8461570a48cae17a2d3a2ac54b47c99bde0dca (patch)
tree96b7d420a173e66efd0d95b334dd651613e79d45
parent81c57be7d96e4a23437ccdf8664c586551326b4a (diff)
downloadlv2-9a8461570a48cae17a2d3a2ac54b47c99bde0dca.tar.xz
Suppress Wsuggest-attribute=malloc
This one triggers on CI but not for me locally for some reason.
-rw-r--r--wscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/wscript b/wscript
index 4d47cbe..162929e 100644
--- a/wscript
+++ b/wscript
@@ -113,6 +113,7 @@ def configure(conf):
'-Wno-padded',
'-Wno-parentheses',
'-Wno-suggest-attribute=const',
+ '-Wno-suggest-attribute=malloc',
'-Wno-suggest-attribute=pure',
'-Wno-switch-enum',
'-Wno-unused-parameter',