aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexBasic.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2012-05-05 13:15:28 +1000
committernyamatongwe <devnull@localhost>2012-05-05 13:15:28 +1000
commitbc5c1d5f9f55dd88ea385d2afea85514da818839 (patch)
tree883bf07d92a8d542723bcfd8329efc8b1fa4784f /lexers/LexBasic.cxx
parent83b27c305d1e6f2b727159d89dd9ef567a410774 (diff)
downloadscintilla-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.cxx2
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;