summaryrefslogtreecommitdiffhomepage
path: root/flowgraph/graph.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-11-17 12:38:40 +0100
committerRoland Reichwein <mail@reichwein.it>2020-11-17 12:38:40 +0100
commit927eb99e75325164a541c2638e1e607294019381 (patch)
tree5b5476456f0f957fc7492465ff08ace54e1a9e48 /flowgraph/graph.h
parentc9cb051fae190acfc36813e4a23759fb9b9c3df3 (diff)
Complete hierarchical evaluation (unittest and systemtest fixed)
Diffstat (limited to 'flowgraph/graph.h')
-rw-r--r--flowgraph/graph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/flowgraph/graph.h b/flowgraph/graph.h
index 15c6aef..c0ab847 100644
--- a/flowgraph/graph.h
+++ b/flowgraph/graph.h
@@ -20,7 +20,7 @@ namespace FlowGraph {
Graph& operator= (const Graph&) = default;
// returns the outermost scope inside this graph
- LocalScope& scope() const;
+ std::shared_ptr<LocalScope> scope() const;
// append other graph by joining the respective outermost scopes
void append(const Graph& other);