diff options
author | David Robillard <d@drobilla.net> | 2010-10-18 21:46:16 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-10-18 21:46:16 +0000 |
commit | 5177aa485f28e40e087042c2b7292fb9a94e7a3c (patch) | |
tree | 12133a503c0ec4000d6d56097c1f0939189ea4e0 /src/module | |
parent | 44657ee4df631379f77695408aa4c275182db50f (diff) | |
download | ingen-5177aa485f28e40e087042c2b7292fb9a94e7a3c.tar.gz ingen-5177aa485f28e40e087042c2b7292fb9a94e7a3c.tar.bz2 ingen-5177aa485f28e40e087042c2b7292fb9a94e7a3c.zip |
Implement URI unmap extension and use it to serialise JSON dictionary keys.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2637 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/module')
-rw-r--r-- | src/module/World.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/module/World.cpp b/src/module/World.cpp index eddeda73..5b21e9ec 100644 --- a/src/module/World.cpp +++ b/src/module/World.cpp @@ -111,6 +111,7 @@ struct WorldImpl : public boost::noncopyable { #ifdef HAVE_SLV2 lv2_features = new Ingen::Shared::LV2Features(); lv2_features->add_feature(LV2_URI_MAP_URI, uris); + lv2_features->add_feature(LV2_URI_UNMAP_URI, uris->unmap_feature()); slv2_world_load_all(slv2_world); #endif |