From dfad81a3c8aee40a515f0ecefb0180a86368b54a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 23 Feb 2013 20:07:09 +0000 Subject: Remove Raul::fmt wrapper, the last vestige of boost dependency for Raul. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5077 a436a847-0d15-0410-975c-d299462d15a1 --- src/server/LV2Block.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/server/LV2Block.cpp') diff --git a/src/server/LV2Block.cpp b/src/server/LV2Block.cpp index 66ac0d70..797cc81f 100644 --- a/src/server/LV2Block.cpp +++ b/src/server/LV2Block.cpp @@ -80,7 +80,7 @@ LV2Block::make_instance(URIs& uris, if (!inst) { parent_graph()->engine().log().error( - Raul::fmt("Failed to instantiate <%1%>\n") + fmt("Failed to instantiate <%1%>\n") % _lv2_plugin->uri().c_str()); return SPtr(); } @@ -132,13 +132,13 @@ LV2Block::make_instance(URIs& uris, port->set_type(PortType::CV, 0); } else { parent_graph()->engine().log().error( - Raul::fmt("%1% auto-morphed to unknown type %2%\n") + fmt("%1% auto-morphed to unknown type %2%\n") % port->path().c_str() % type); return SPtr(); } } else { parent_graph()->engine().log().error( - Raul::fmt("Failed to get auto-morphed type of %1%\n") + fmt("Failed to get auto-morphed type of %1%\n") % port->path().c_str()); } } @@ -284,7 +284,7 @@ LV2Block::instantiate(BufferFactory& bufs) uint32_t port_buffer_size = bufs.default_size(buffer_type); if (port_buffer_size == 0) { parent_graph()->engine().log().error( - Raul::fmt("<%1%> port `%2%' has unknown buffer type\n") + fmt("<%1%> port `%2%' has unknown buffer type\n") % _lv2_plugin->uri().c_str() % port_sym.c_str()); ret = false; break; @@ -333,7 +333,7 @@ LV2Block::instantiate(BufferFactory& bufs) if (port_type == PortType::UNKNOWN || direction == UNKNOWN) { parent_graph()->engine().log().error( - Raul::fmt("<%1%> port `%2%' has unknown type or direction\n") + fmt("<%1%> port `%2%' has unknown type or direction\n") % _lv2_plugin->uri().c_str() % port_sym.c_str()); ret = false; break; @@ -455,7 +455,7 @@ LV2Block::work(uint32_t size, const void* data) LV2_Handle inst = lilv_instance_get_handle(instance(0)); if (_worker_iface->work(inst, work_respond, this, size, data)) { parent_graph()->engine().log().error( - Raul::fmt("Error calling %1% work method\n") % _path); + fmt("Error calling %1% work method\n") % _path); } } } -- cgit v1.2.1