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 --- tests/TestClient.hpp | 4 ++-- tests/ingen_bench.cpp | 6 +++--- tests/ingen_test.cpp | 2 +- tests/tst_FilePath.cpp | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) (limited to 'tests') diff --git a/tests/TestClient.hpp b/tests/TestClient.hpp index 8d99db86..e80557f1 100644 --- a/tests/TestClient.hpp +++ b/tests/TestClient.hpp @@ -22,9 +22,9 @@ #include "ingen/Interface.hpp" #include "ingen/Log.hpp" -using namespace Ingen; +using namespace ingen; -class TestClient : public Ingen::Interface +class TestClient : public ingen::Interface { public: explicit TestClient(Log& log) : _log(log) {} diff --git a/tests/ingen_bench.cpp b/tests/ingen_bench.cpp index e8cccf4c..2ac1f5f1 100644 --- a/tests/ingen_bench.cpp +++ b/tests/ingen_bench.cpp @@ -33,7 +33,7 @@ #include "ingen_config.h" using namespace std; -using namespace Ingen; +using namespace ingen; World* world = nullptr; @@ -66,7 +66,7 @@ main(int argc, char** argv) world = new World(nullptr, nullptr, nullptr); world->conf().add( "output", "output", 'O', "File to write benchmark output", - Ingen::Configuration::SESSION, world->forge().String, Atom()); + ingen::Configuration::SESSION, world->forge().String, Atom()); world->load_configuration(argc, argv); } catch (std::exception& e) { cout << "ingen: " << e.what() << endl; @@ -110,7 +110,7 @@ main(int argc, char** argv) // Run benchmark // TODO: Set up real-time scheduling for this and worker threads - Ingen::Clock clock; + ingen::Clock clock; const uint32_t n_test_frames = 1 << 20; const uint32_t block_length = 4096; const uint64_t t_start = clock.now_microseconds(); diff --git a/tests/ingen_test.cpp b/tests/ingen_test.cpp index c0a7bd32..080dd596 100644 --- a/tests/ingen_test.cpp +++ b/tests/ingen_test.cpp @@ -49,7 +49,7 @@ #include "TestClient.hpp" using namespace std; -using namespace Ingen; +using namespace ingen; World* world = nullptr; diff --git a/tests/tst_FilePath.cpp b/tests/tst_FilePath.cpp index 55d6f1c2..ec0fe593 100644 --- a/tests/tst_FilePath.cpp +++ b/tests/tst_FilePath.cpp @@ -19,7 +19,7 @@ #include "ingen/FilePath.hpp" #include "test_utils.hpp" -using Ingen::FilePath; +using ingen::FilePath; int main(int, char**) -- cgit v1.2.1