From fbd0184b77f4bcd7ec22642b5f75f2188b870f72 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 14 Mar 2018 23:58:27 -0400 Subject: Remove RunContext dependency from CompiledGraph --- src/server/GraphImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/server/GraphImpl.cpp') diff --git a/src/server/GraphImpl.cpp b/src/server/GraphImpl.cpp index f9c4cb54..dc928179 100644 --- a/src/server/GraphImpl.cpp +++ b/src/server/GraphImpl.cpp @@ -232,7 +232,7 @@ void GraphImpl::run(RunContext& context) { if (_compiled_graph) { - _compiled_graph->run(context); + _compiled_graph->master().run(context); } } -- cgit v1.2.1