diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-11-07 19:23:50 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-11-07 19:23:50 +0100 |
commit | e7d51fff32ea247fd35b56fc7cf5ce06df5dc6bf (patch) | |
tree | 0874ecc0471ff8896a821ac150895fa4c7865f09 /flowgraph/storage.h | |
parent | f0f7a8f7fd237d1f8e2bab2bfb2cb4442e1a692f (diff) |
Implemented first expressions (add)
Diffstat (limited to 'flowgraph/storage.h')
-rw-r--r-- | flowgraph/storage.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/flowgraph/storage.h b/flowgraph/storage.h index efd7d52..28aae1e 100644 --- a/flowgraph/storage.h +++ b/flowgraph/storage.h @@ -50,6 +50,7 @@ namespace FlowGraph { class LocalScope { public: + LocalScope() = default; size_t getNewIndex() { return m_index++; } private: size_t m_index{ 0 }; |