Update Scintilla from 3.5.2 to 3.5.5

This commit is contained in:
ARATA Mizuki
2015-04-25 23:49:22 +09:00
committed by Vadim Zeitlin
parent 4ce52bc7a2
commit 28e80e5b58
52 changed files with 3372 additions and 966 deletions

View File

@@ -69,6 +69,8 @@ static char **ArrayFromWordList(char *wordlist, int *len, bool onlyLineEnds = fa
WordList::WordList(bool onlyLineEnds_) :
words(0), list(0), len(0), onlyLineEnds(onlyLineEnds_) {
// Prevent warnings by static analyzers about uninitialized starts.
starts[0] = -1;
}
WordList::~WordList() {