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/LexSQL.cxx | |
parent | 83b27c305d1e6f2b727159d89dd9ef567a410774 (diff) | |
download | scintilla-mirror-bc5c1d5f9f55dd88ea385d2afea85514da818839.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; } |