From d91f0506fc2be907109a054e140dffe6e88bd597 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 22 Nov 2014 01:43:35 +0000 Subject: Fix warnings when building with ISO C++ compilers. git-svn-id: http://svn.drobilla.net/lad/trunk/sratom@5492 a436a847-0d15-0410-975c-d299462d15a1 --- NEWS | 6 ++++++ sratom/sratom.h | 2 +- src/sratom.c | 5 +---- wscript | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/NEWS b/NEWS index 2f85ccf..85afb36 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +sratom (0.4.7) unstable; + + * Fix warnings when building with ISO C++ compilers + + -- David Robillard Fri, 08 Aug 2014 18:14:19 -0400 + sratom (0.4.6) stable; * Update for latest LV2 Atom Object simplification diff --git a/sratom/sratom.h b/sratom/sratom.h index bb1af95..a86f67e 100644 --- a/sratom/sratom.h +++ b/sratom/sratom.h @@ -83,7 +83,7 @@ typedef enum { to sratom_read(); if this is a resource it will be read as an Object, but all other named resources encountered will be read as URIs. */ - SRATOM_OBJECT_MODE_BLANK_SUBJECT, + SRATOM_OBJECT_MODE_BLANK_SUBJECT } SratomObjectMode; /** diff --git a/src/sratom.c b/src/sratom.c index 4d8add7..272e6e3 100644 --- a/src/sratom.c +++ b/src/sratom.c @@ -14,8 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#define __STDC_LIMIT_MACROS 1 - #include #include #include @@ -36,7 +34,7 @@ typedef enum { MODE_SUBJECT, MODE_BODY, - MODE_SEQUENCE, + MODE_SEQUENCE } ReadMode; struct SratomImpl { @@ -600,7 +598,6 @@ read_node(Sratom* sratom, for (const char* s = str; s < str + len; s += 2) { unsigned num; sscanf(s, "%2X", &num); - assert(num < UINT8_MAX); const uint8_t c = num; lv2_atom_forge_raw(forge, &c, 1); } diff --git a/wscript b/wscript index 23bd5a7..2758463 100644 --- a/wscript +++ b/wscript @@ -8,7 +8,7 @@ import waflib.extras.autowaf as autowaf # major increment <=> incompatible changes # minor increment <=> compatible changes (additions) # micro increment <=> no interface changes -SRATOM_VERSION = '0.4.6' +SRATOM_VERSION = '0.4.7' SRATOM_MAJOR_VERSION = '0' # Mandatory waf variables -- cgit v1.2.1