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/ingen_test.cpp | |
parent | ec0b87a18623c17c16f6a648fcf277abe14142b7 (diff) | |
download | ingen-bdbdf42f3fe990c713c5437724db39274c387eee.tar.gz ingen-bdbdf42f3fe990c713c5437724db39274c387eee.tar.bz2 ingen-bdbdf42f3fe990c713c5437724db39274c387eee.zip |
Remove std::shared_ptr alias
Diffstat (limited to 'tests/ingen_test.cpp')
-rw-r--r-- | tests/ingen_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |