summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-09-27 16:41:51 +0200
committerDavid Robillard <d@drobilla.net>2020-09-27 16:55:42 +0200
commit5835c49955a2ac30d686623f6ae0470077178145 (patch)
tree1a89deb6039e08a484c663ab102c339b1580f5ac
parent408d1948eacb9162ff83fda2a029e537ae1f5553 (diff)
downloadsratom-5835c49955a2ac30d686623f6ae0470077178145.tar.gz
sratom-5835c49955a2ac30d686623f6ae0470077178145.tar.bz2
sratom-5835c49955a2ac30d686623f6ae0470077178145.zip
Suppress warnings in release builds
-rw-r--r--NEWS6
-rw-r--r--wscript1
2 files changed, 7 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 488d0e4..5a382b5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+sratom (0.6.5) unstable;
+
+ * Fix various minor warnings and other code quality issues
+
+ -- David Robillard <d@drobilla.net> Sun, 27 Sep 2020 14:55:33 +0000
+
sratom (0.6.4) stable;
* Make sratom_free() safe to call on NULL
diff --git a/wscript b/wscript
index e05ac66..e44f75a 100644
--- a/wscript
+++ b/wscript
@@ -49,6 +49,7 @@ def configure(conf):
'-Wno-cast-qual',
'-Wno-conversion',
'-Wno-padded',
+ '-Wno-suggest-attribute=pure',
],
'clang': [
'-Wno-cast-align',