summaryrefslogtreecommitdiffhomepage
path: root/flowgraph/storage.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-11-07 19:23:50 +0100
committerRoland Reichwein <mail@reichwein.it>2020-11-07 19:23:50 +0100
commite7d51fff32ea247fd35b56fc7cf5ce06df5dc6bf (patch)
tree0874ecc0471ff8896a821ac150895fa4c7865f09 /flowgraph/storage.h
parentf0f7a8f7fd237d1f8e2bab2bfb2cb4442e1a692f (diff)
Implemented first expressions (add)
Diffstat (limited to 'flowgraph/storage.h')
-rw-r--r--flowgraph/storage.h1
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 };