diff options
author | David Robillard <d@drobilla.net> | 2018-09-23 17:31:12 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-23 17:31:12 +0200 |
commit | 394b01da8e26dbe1b6a0520944d954ca0b16b1b5 (patch) | |
tree | 1c079badda98cb366d72d59aabcb68fcc38760cf /src/ingen | |
parent | 367f7c57028ce05f3d765fed678a64ad54a73312 (diff) | |
download | ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.gz ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.bz2 ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.zip |
Use lowercase namespace names
Diffstat (limited to 'src/ingen')
-rw-r--r-- | src/ingen/ingen.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ingen/ingen.cpp b/src/ingen/ingen.cpp index d812d862..bf18f0dd 100644 --- a/src/ingen/ingen.cpp +++ b/src/ingen/ingen.cpp @@ -40,7 +40,7 @@ #endif using namespace std; -using namespace Ingen; +using namespace ingen; class DummyInterface : public Interface { @@ -48,7 +48,7 @@ class DummyInterface : public Interface void message(const Message& msg) override {} }; -unique_ptr<Ingen::World> world; +unique_ptr<ingen::World> world; static void ingen_interrupt(int signal) @@ -88,11 +88,11 @@ print_version() int main(int argc, char** argv) { - Ingen::set_bundle_path_from_code((void*)&print_version); + ingen::set_bundle_path_from_code((void*)&print_version); // Create world try { - world = unique_ptr<Ingen::World>(new Ingen::World(nullptr, NULL, NULL)); + world = unique_ptr<ingen::World>(new ingen::World(nullptr, NULL, NULL)); world->load_configuration(argc, argv); if (argc <= 1) { world->conf().print_usage("ingen", cout); @@ -127,7 +127,7 @@ main(int argc, char** argv) } #ifdef HAVE_SOCKET - Client::SocketClient::register_factories(world.get()); + client::SocketClient::register_factories(world.get()); #endif // Load GUI if requested |