From e0bc440df747e01b6458b6535c3d8e8512172dc6 Mon Sep 17 00:00:00 2001 From: Christian Grasser Date: Thu, 11 Jun 2015 10:10:43 +0200 Subject: [PATCH] - avoid compiler warning about unused parameter --- scintilla/lexers/LexSearchResult.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scintilla/lexers/LexSearchResult.cxx b/scintilla/lexers/LexSearchResult.cxx index 6742f626..db4dca70 100644 --- a/scintilla/lexers/LexSearchResult.cxx +++ b/scintilla/lexers/LexSearchResult.cxx @@ -96,7 +96,7 @@ static void ColouriseSearchResultLine(SearchResultMarkings* pMarkings, char *lin } } -static void ColouriseSearchResultDoc(unsigned int startPos, int length, int, WordList *keywordlists[], Accessor &styler) { +static void ColouriseSearchResultDoc(unsigned int startPos, int length, int, WordList *[], Accessor &styler) { char lineBuffer[SC_SEARCHRESULT_LINEBUFFERMAXLENGTH]; styler.StartAt(startPos);