diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-11-16 12:48:44 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-11-16 12:48:44 +0100 |
commit | c9cb051fae190acfc36813e4a23759fb9b9c3df3 (patch) | |
tree | fcd8c93cd5dc2a3272eac253b0291611e16ea13f /flowgraph/scope.h | |
parent | 300219dc8519720a36525c7b40c6a327580fe0bd (diff) |
Implement hierarchical evaluation (WIP)
Diffstat (limited to 'flowgraph/scope.h')
-rw-r--r-- | flowgraph/scope.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flowgraph/scope.h b/flowgraph/scope.h index 50003f4..65898cf 100644 --- a/flowgraph/scope.h +++ b/flowgraph/scope.h @@ -10,7 +10,7 @@ namespace FlowGraph { - class TemporaryStorage; ///< Forward declaration + class Storage; ///< Forward declaration // Provide a context for local temporaries name generation class LocalScope @@ -20,7 +20,7 @@ namespace FlowGraph { void push_back(std::shared_ptr<Data> data); void append(const LocalScope& other); - index_t indexOfStorage(const TemporaryStorage& storage) const; + index_t indexOfStorage(const Storage& storage) const; private: std::vector<std::shared_ptr<Data>> m_variables; |