summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-12-14 21:21:49 +0100
committerDavid Robillard <d@drobilla.net>2020-12-14 22:04:29 +0100
commitcba264d3555e2741665693da416f9649b8cc3a49 (patch)
treeddc1dc1e80f79f6564f64ba2867447d233da685b /tests
parent992b6bbe9f17749f509ca61587efef13d052ba7f (diff)
downloadingen-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.cpp2
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()));