summaryrefslogtreecommitdiffstats
path: root/tests/ingen_bench.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 /tests/ingen_bench.cpp
parent367f7c57028ce05f3d765fed678a64ad54a73312 (diff)
downloadingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.gz
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.bz2
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.zip
Use lowercase namespace names
Diffstat (limited to 'tests/ingen_bench.cpp')
-rw-r--r--tests/ingen_bench.cpp6
1 files changed, 3 insertions, 3 deletions
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();