diff options
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 |