summaryrefslogtreecommitdiffstats
path: root/src/server/LV2Block.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-23 17:31:12 +0200
committerDavid Robillard <d@drobilla.net>2018-09-23 17:31:12 +0200
commit394b01da8e26dbe1b6a0520944d954ca0b16b1b5 (patch)
tree1c079badda98cb366d72d59aabcb68fcc38760cf /src/server/LV2Block.cpp
parent367f7c57028ce05f3d765fed678a64ad54a73312 (diff)
downloadingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.gz
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.bz2
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.zip
Use lowercase namespace names
Diffstat (limited to 'src/server/LV2Block.cpp')
-rw-r--r--src/server/LV2Block.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/server/LV2Block.cpp b/src/server/LV2Block.cpp
index 9ebf7dcf..c2b8e973 100644
--- a/src/server/LV2Block.cpp
+++ b/src/server/LV2Block.cpp
@@ -45,8 +45,8 @@
#include "RunContext.hpp"
#include "Worker.hpp"
-namespace Ingen {
-namespace Server {
+namespace ingen {
+namespace server {
/** Partially construct a LV2Block.
*
@@ -217,10 +217,10 @@ LV2Block::apply_poly(RunContext& context, uint32_t poly)
bool
LV2Block::instantiate(BufferFactory& bufs, const LilvState* state)
{
- const Ingen::URIs& uris = bufs.uris();
- Ingen::World* world = bufs.engine().world();
+ const ingen::URIs& uris = bufs.uris();
+ ingen::World* world = bufs.engine().world();
const LilvPlugin* plug = _lv2_plugin->lilv_plugin();
- Ingen::Forge& forge = bufs.forge();
+ ingen::Forge& forge = bufs.forge();
const uint32_t num_ports = lilv_plugin_get_num_ports(plug);
LilvNode* lv2_connectionOptional = lilv_new_uri(
@@ -738,5 +738,5 @@ LV2Block::set_port_buffer(uint32_t voice,
buf ? buf->port_data(_ports->at(port_num)->type(), offset) : nullptr);
}
-} // namespace Server
-} // namespace Ingen
+} // namespace server
+} // namespace ingen