From 394b01da8e26dbe1b6a0520944d954ca0b16b1b5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 23 Sep 2018 17:31:12 +0200 Subject: Use lowercase namespace names --- src/ingen/ingen.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/ingen/ingen.cpp') 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 world; +unique_ptr 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(new Ingen::World(nullptr, NULL, NULL)); + world = unique_ptr(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 -- cgit v1.2.1