diff options
author | nyamatongwe <devnull@localhost> | 2005-06-07 23:14:55 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2005-06-07 23:14:55 +0000 |
commit | 067c50f3e3c27e4152513ff1c76a7abf55b1920b (patch) | |
tree | a39f7fce787c8011403589cc2defa1ac22bbda73 | |
parent | 32f5cab7dd147870b495c35174acfaef36ce17d7 (diff) | |
download | scintilla-mirror-067c50f3e3c27e4152513ff1c76a7abf55b1920b.tar.gz |
Added virtual destructor to avoid warning from GCC 4.
-rw-r--r-- | src/RESearch.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/RESearch.h b/src/RESearch.h index 8ca9cd0b8..a558b371d 100644 --- a/src/RESearch.h +++ b/src/RESearch.h @@ -20,6 +20,8 @@ class CharacterIndexer { public: virtual char CharAt(int index)=0; + virtual ~CharacterIndexer() { + } }; class RESearch { |