diff options
author | David Robillard <d@drobilla.net> | 2018-01-21 00:41:34 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-01-21 00:56:50 +0100 |
commit | 44f7ad5222d824d81dc743045d5887418847e74e (patch) | |
tree | 1b41535ac00b8b225a25dba2873b064cb074bfa9 /src/World.cpp | |
parent | 90fca083052880479ad90d870e556f0648e32106 (diff) | |
download | ingen-44f7ad5222d824d81dc743045d5887418847e74e.tar.gz ingen-44f7ad5222d824d81dc743045d5887418847e74e.tar.bz2 ingen-44f7ad5222d824d81dc743045d5887418847e74e.zip |
Add URI class and remove use of Raul::URI
Diffstat (limited to 'src/World.cpp')
-rw-r--r-- | src/World.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/World.cpp b/src/World.cpp index 8797bb3e..7834c3df 100644 --- a/src/World.cpp +++ b/src/World.cpp @@ -312,10 +312,10 @@ World::run_module(const char* name) /** Get an interface for a remote engine at `engine_uri` */ SPtr<Interface> -World::new_interface(const Raul::URI& engine_uri, - SPtr<Interface> respondee) +World::new_interface(const URI& engine_uri, SPtr<Interface> respondee) { - const Impl::InterfaceFactories::const_iterator i = _impl->interface_factories.find(engine_uri.scheme()); + const Impl::InterfaceFactories::const_iterator i = + _impl->interface_factories.find(std::string(engine_uri.scheme())); if (i == _impl->interface_factories.end()) { log().warn(fmt("Unknown URI scheme `%1%'\n") % engine_uri.scheme()); return SPtr<Interface>(); |