From 87c10c7cec29665aef891e4236e748a4fbed3030 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 31 Jan 2011 05:30:10 +0000 Subject: librdf_new_node_from_node => slv2_node_copy. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2888 a436a847-0d15-0410-975c-d299462d15a1 --- src/slv2_internal.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/slv2_internal.h') diff --git a/src/slv2_internal.h b/src/slv2_internal.h index eba23b7..b4e919b 100644 --- a/src/slv2_internal.h +++ b/src/slv2_internal.h @@ -259,6 +259,9 @@ SLV2Value slv2_value_new_librdf_node(SLV2World world, librdf_node* node); SLV2Value slv2_value_new_librdf_uri(SLV2World world, librdf_node* node); librdf_uri* slv2_value_as_librdf_uri(SLV2Value value); +static inline librdf_node* slv2_node_copy(librdf_node* node) { + return librdf_new_node_from_node(node); +} /* ********* Values ********* */ -- cgit v1.2.1