diff options
author | nyamatongwe <unknown> | 2012-05-05 13:15:28 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2012-05-05 13:15:28 +1000 |
commit | af0b10fdaa1ba81f03a1dc51a59f6256f10cc68f (patch) | |
tree | 9cd5316ff0cfee9b40dae72b53fa528ffc2af501 /lexers/LexSQL.cxx | |
parent | ef4f64e801487eff26e4fdba2031fab0e3a9a588 (diff) | |
download | scintilla-mirror-af0b10fdaa1ba81f03a1dc51a59f6256f10cc68f.tar.gz |
Make destructors virtual to avoid warnings from g++ 4.7.
Diffstat (limited to 'lexers/LexSQL.cxx')
-rw-r--r-- | lexers/LexSQL.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lexers/LexSQL.cxx b/lexers/LexSQL.cxx index 77f96b016..d9013db9b 100644 --- a/lexers/LexSQL.cxx +++ b/lexers/LexSQL.cxx @@ -267,6 +267,8 @@ class LexerSQL : public ILexer { public : LexerSQL() {} + virtual ~LexerSQL() {} + int SCI_METHOD Version () const { return lvOriginal; } |