summaryrefslogtreecommitdiffstats
path: root/src/serialisation/Parser.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-01-11 02:57:29 +0000
committerDavid Robillard <d@drobilla.net>2013-01-11 02:57:29 +0000
commit057bee977b95c6ccb4deb35245b598638d920330 (patch)
tree833ee00a08a918dd708b19e5c4fa801500ad9679 /src/serialisation/Parser.cpp
parent4b480bf87cd496446491e3880d867d7fa92c6c49 (diff)
downloadingen-057bee977b95c6ccb4deb35245b598638d920330.tar.gz
ingen-057bee977b95c6ccb4deb35245b598638d920330.tar.bz2
ingen-057bee977b95c6ccb4deb35245b598638d920330.zip
C++11-safe conversions.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4914 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/serialisation/Parser.cpp')
-rw-r--r--src/serialisation/Parser.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/serialisation/Parser.cpp b/src/serialisation/Parser.cpp
index 3a283641..5feb8e06 100644
--- a/src/serialisation/Parser.cpp
+++ b/src/serialisation/Parser.cpp
@@ -123,7 +123,8 @@ get_properties(Ingen::World* world,
atomm = world->forge().alloc(
atom->size, atom->type, LV2_ATOM_BODY_CONST(atom));
}
- props.insert(make_pair(i.get_predicate().to_string(), atomm));
+ props.insert(make_pair(Raul::URI(i.get_predicate().to_string()),
+ atomm));
}
}