diff options
author | David Robillard <d@drobilla.net> | 2015-10-30 00:33:47 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-10-30 00:33:47 +0000 |
commit | cc5ec7438bfc46fbbdcf980ba4f7f3d4a3e78e52 (patch) | |
tree | 9cbabcde873c4a04da3baab6f238cc6c845d3eba /src | |
parent | 6db2bea5bef36fd97746e3b02612b075b442ea74 (diff) | |
download | ingen-cc5ec7438bfc46fbbdcf980ba4f7f3d4a3e78e52.tar.gz ingen-cc5ec7438bfc46fbbdcf980ba4f7f3d4a3e78e52.tar.bz2 ingen-cc5ec7438bfc46fbbdcf980ba4f7f3d4a3e78e52.zip |
Remove unused variable
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5806 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r-- | src/Parser.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Parser.cpp b/src/Parser.cpp index da0e9376..50ccb975 100644 --- a/src/Parser.cpp +++ b/src/Parser.cpp @@ -127,10 +127,9 @@ get_properties(Ingen::World* world, const Sord::Node& subject, Resource::Graph ctx) { - SerdChunk out = { NULL, 0 }; - LV2_URID_Map* map = &world->uri_map().urid_map_feature()->urid_map; - LV2_URID_Unmap* unmap = &world->uri_map().urid_unmap_feature()->urid_unmap; - Sratom* sratom = sratom_new(map); + SerdChunk out = { NULL, 0 }; + LV2_URID_Map* map = &world->uri_map().urid_map_feature()->urid_map; + Sratom* sratom = sratom_new(map); LV2_Atom_Forge forge; lv2_atom_forge_init(&forge, map); |