diff options
author | David Robillard <d@drobilla.net> | 2011-01-31 05:37:42 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-01-31 05:37:42 +0000 |
commit | 5872789853f4daba7d558c2a42b222862b45e269 (patch) | |
tree | 84dc671b1606c10e1a548e0750fc9887aad6155b /src/slv2_internal.h | |
parent | 87c10c7cec29665aef891e4236e748a4fbed3030 (diff) | |
download | lilv-5872789853f4daba7d558c2a42b222862b45e269.tar.gz lilv-5872789853f4daba7d558c2a42b222862b45e269.tar.bz2 lilv-5872789853f4daba7d558c2a42b222862b45e269.zip |
librdf_free_node => slv2_node_free.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2889 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r-- | src/slv2_internal.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h index b4e919b..b05ea25 100644 --- a/src/slv2_internal.h +++ b/src/slv2_internal.h @@ -263,6 +263,10 @@ static inline librdf_node* slv2_node_copy(librdf_node* node) { return librdf_new_node_from_node(node); } +static inline void slv2_node_free(librdf_node* node) { + librdf_free_node(node); +} + /* ********* Values ********* */ void slv2_values_set_at(SLV2Values list, unsigned index, void* value); |