From 057bee977b95c6ccb4deb35245b598638d920330 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 11 Jan 2013 02:57:29 +0000 Subject: C++11-safe conversions. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4914 a436a847-0d15-0410-975c-d299462d15a1 --- src/Store.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Store.cpp') diff --git a/src/Store.cpp b/src/Store.cpp index 87a0315e..fda93474 100644 --- a/src/Store.cpp +++ b/src/Store.cpp @@ -29,7 +29,7 @@ Store::add(Node* o) return; } - insert(make_pair(o->path(), o)); + insert(make_pair(o->path(), SharedPtr(o))); for (uint32_t i = 0; i < o->num_ports(); ++i) { add(o->port(i)); -- cgit v1.2.1