diff options
author | David Robillard <d@drobilla.net> | 2020-12-14 21:21:49 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-14 22:04:29 +0100 |
commit | cba264d3555e2741665693da416f9649b8cc3a49 (patch) | |
tree | ddc1dc1e80f79f6564f64ba2867447d233da685b /tests | |
parent | 992b6bbe9f17749f509ca61587efef13d052ba7f (diff) | |
download | ingen-cba264d3555e2741665693da416f9649b8cc3a49.tar.gz ingen-cba264d3555e2741665693da416f9649b8cc3a49.tar.bz2 ingen-cba264d3555e2741665693da416f9649b8cc3a49.zip |
Fix redundant calls to smart pointer get() methods
Diffstat (limited to 'tests')
-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 16dc0a0a..711a9ab7 100644 --- a/tests/ingen_test.cpp +++ b/tests/ingen_test.cpp @@ -138,7 +138,7 @@ run(int argc, char** argv) AtomReader atom_reader(world->uri_map(), world->uris(), world->log(), - *world->interface().get()); + *world->interface()); // AtomWriter to serialise responses from the engine std::shared_ptr<Interface> client(new TestClient(world->log())); |