diff options
author | David Robillard <d@drobilla.net> | 2010-10-17 07:26:04 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-10-17 07:26:04 +0000 |
commit | f0bed61d08527bdb70927a489ab7923601d6a558 (patch) | |
tree | ab584f36b9dcc41c954287c87d11fd4e9cbaed3f /ext/atom.lv2/atom-helpers.h | |
parent | c3289b5f5cccad9365b6c917f3cda2dd98efa1b5 (diff) | |
download | lv2-f0bed61d08527bdb70927a489ab7923601d6a558.tar.xz |
Make lv2_atom_dict_iter_is_end const.
Diffstat (limited to 'ext/atom.lv2/atom-helpers.h')
-rw-r--r-- | ext/atom.lv2/atom-helpers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/atom.lv2/atom-helpers.h b/ext/atom.lv2/atom-helpers.h index 801bd32..f4908e3 100644 --- a/ext/atom.lv2/atom-helpers.h +++ b/ext/atom.lv2/atom-helpers.h @@ -53,7 +53,7 @@ lv2_atom_dict_get_iter(LV2_Atom_Property* prop) } static inline bool -lv2_atom_dict_iter_is_end(LV2_Atom* dict, LV2_Atom_Dict_Iter iter) +lv2_atom_dict_iter_is_end(const LV2_Atom* dict, LV2_Atom_Dict_Iter iter) { return (uint8_t*)iter >= (dict->body + dict->size); } |