diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-11-07 15:05:45 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-11-07 15:05:45 +0100 |
commit | f0f7a8f7fd237d1f8e2bab2bfb2cb4442e1a692f (patch) | |
tree | f3c08014262ad519b183aa9218d48bf65e6bb9f4 /flowgraph | |
parent | 71c7fd62f8b5257b82cf32b0f747fcf313fcc617 (diff) |
Add node map
Diffstat (limited to 'flowgraph')
-rw-r--r-- | flowgraph/node.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flowgraph/node.h b/flowgraph/node.h index 40846e2..aa9d333 100644 --- a/flowgraph/node.h +++ b/flowgraph/node.h @@ -17,7 +17,7 @@ namespace FlowGraph { class Node { public: - virtual ~Node() {}; // force class to be polymorphic + virtual ~Node() {}; // force class to be polymorphic (e.g. in a container) }; // Memory on Heap: new and delete |