diff options
author | David Robillard <d@drobilla.net> | 2020-08-02 15:23:19 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-02 15:23:19 +0200 |
commit | bdbdf42f3fe990c713c5437724db39274c387eee (patch) | |
tree | 7f921a04fd580da6bcb6fc8975fa2aebfcd93e0f /tests | |
parent | ec0b87a18623c17c16f6a648fcf277abe14142b7 (diff) | |
download | ingen-bdbdf42f3fe990c713c5437724db39274c387eee.tar.gz ingen-bdbdf42f3fe990c713c5437724db39274c387eee.tar.bz2 ingen-bdbdf42f3fe990c713c5437724db39274c387eee.zip |
Remove std::shared_ptr alias
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ingen_bench.cpp | 1 | ||||
-rw-r--r-- | tests/ingen_test.cpp | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/tests/ingen_bench.cpp b/tests/ingen_bench.cpp index 126b7e13..05cf5387 100644 --- a/tests/ingen_bench.cpp +++ b/tests/ingen_bench.cpp @@ -21,7 +21,6 @@ #include "ingen/Forge.hpp" #include "ingen/Parser.hpp" #include "ingen/World.hpp" -#include "ingen/memory.hpp" #include "ingen/runtime_paths.hpp" #include <chrono> diff --git a/tests/ingen_test.cpp b/tests/ingen_test.cpp index 5634f513..367c9e2b 100644 --- a/tests/ingen_test.cpp +++ b/tests/ingen_test.cpp @@ -136,7 +136,7 @@ main(int argc, char** argv) *world->interface().get()); // AtomWriter to serialise responses from the engine - SPtr<Interface> client(new TestClient(world->log())); + std::shared_ptr<Interface> client(new TestClient(world->log())); world->interface()->set_respondee(client); world->engine()->register_client(client); |