aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2005-06-07 23:14:55 +0000
committernyamatongwe <devnull@localhost>2005-06-07 23:14:55 +0000
commit067c50f3e3c27e4152513ff1c76a7abf55b1920b (patch)
treea39f7fce787c8011403589cc2defa1ac22bbda73 /src
parent32f5cab7dd147870b495c35174acfaef36ce17d7 (diff)
downloadscintilla-mirror-067c50f3e3c27e4152513ff1c76a7abf55b1920b.tar.gz
Added virtual destructor to avoid warning from GCC 4.
Diffstat (limited to 'src')
-rw-r--r--src/RESearch.h2
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 {