diff options
author | nyamatongwe <devnull@localhost> | 2012-05-05 13:15:28 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2012-05-05 13:15:28 +1000 |
commit | bc5c1d5f9f55dd88ea385d2afea85514da818839 (patch) | |
tree | 883bf07d92a8d542723bcfd8329efc8b1fa4784f /lexers/LexBasic.cxx | |
parent | 83b27c305d1e6f2b727159d89dd9ef567a410774 (diff) | |
download | scintilla-mirror-bc5c1d5f9f55dd88ea385d2afea85514da818839.tar.gz |
Make destructors virtual to avoid warnings from g++ 4.7.
Diffstat (limited to 'lexers/LexBasic.cxx')
-rw-r--r-- | lexers/LexBasic.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexBasic.cxx b/lexers/LexBasic.cxx index b15ce0947..bc8fcee47 100644 --- a/lexers/LexBasic.cxx +++ b/lexers/LexBasic.cxx @@ -223,7 +223,7 @@ public: CheckFoldPoint(CheckFoldPoint_), osBasic(wordListDescriptions) { } - ~LexerBasic() { + virtual ~LexerBasic() { } void SCI_METHOD Release() { delete this; |