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 /tests | |
parent | 367f7c57028ce05f3d765fed678a64ad54a73312 (diff) | |
download | ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.gz ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.bz2 ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.zip |
Use lowercase namespace names
Diffstat (limited to 'tests')
-rw-r--r-- | tests/TestClient.hpp | 4 | ||||
-rw-r--r-- | tests/ingen_bench.cpp | 6 | ||||
-rw-r--r-- | tests/ingen_test.cpp | 2 | ||||
-rw-r--r-- | tests/tst_FilePath.cpp | 2 |
4 files changed, 7 insertions, 7 deletions
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**) |