added virtual dtor to polymorphic class template ParseTreeProperty

This commit is contained in:
ralf 2018-11-29 10:44:47 +01:00
parent 8268fdd957
commit 7fdec95d15
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@ namespace tree {
template<typename V>
class ANTLR4CPP_PUBLIC ParseTreeProperty {
public:
virtual ~ParseTreeProperty() {}
virtual V get(ParseTree *node) {
return _annotations[node];
}