diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-08-02 14:49:22 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-08-02 14:49:22 +0200 |
commit | 11368e1628dbf084f573a741168ffbafa30eec7f (patch) | |
tree | c9b27a6216c49af1db8f98c721c0b28243eed4f8 | |
parent | 3185abe2649ad57ec6eb06ccf99ed0d767daadb9 (diff) | |
parent | fc882d73d6511be4325a7b9c16d6833263c06b10 (diff) | |
download | nextpnr-11368e1628dbf084f573a741168ffbafa30eec7f.tar.gz nextpnr-11368e1628dbf084f573a741168ffbafa30eec7f.tar.bz2 nextpnr-11368e1628dbf084f573a741168ffbafa30eec7f.zip |
Merge branch 'master' of github.com:YosysHQ/nextpnr into reroute
-rw-r--r-- | gui/treemodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/treemodel.h b/gui/treemodel.h index c3f9fe88..0236a715 100644 --- a/gui/treemodel.h +++ b/gui/treemodel.h @@ -102,7 +102,7 @@ class Item virtual bool canFetchMore() const { return false; } virtual void fetchMore() {} - ~Item() + virtual ~Item() { if (parent_ != nullptr) { parent_->deleteChild(this); |