aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexAsm.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/LexAsm.cxx
parent83b27c305d1e6f2b727159d89dd9ef567a410774 (diff)
downloadscintilla-mirror-bc5c1d5f9f55dd88ea385d2afea85514da818839.tar.gz
Make destructors virtual to avoid warnings from g++ 4.7.
Diffstat (limited to 'lexers/LexAsm.cxx')
-rw-r--r--lexers/LexAsm.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexAsm.cxx b/lexers/LexAsm.cxx
index 71e24bccf..78874de86 100644
--- a/lexers/LexAsm.cxx
+++ b/lexers/LexAsm.cxx
@@ -153,7 +153,7 @@ class LexerAsm : public ILexer {
public:
LexerAsm() {
}
- ~LexerAsm() {
+ virtual ~LexerAsm() {
}
void SCI_METHOD Release() {
delete this;