From 10aa4662ec2b2a3719d4704f740de45ad7691428 Mon Sep 17 00:00:00 2001 From: baldurk Date: Tue, 7 Jan 2020 13:48:30 +0000 Subject: [PATCH] Add deliberate fall-through comment into scintilla code --- qrenderdoc/3rdparty/scintilla/src/RESearch.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/qrenderdoc/3rdparty/scintilla/src/RESearch.cxx b/qrenderdoc/3rdparty/scintilla/src/RESearch.cxx index 4e290309c..91fca380d 100644 --- a/qrenderdoc/3rdparty/scintilla/src/RESearch.cxx +++ b/qrenderdoc/3rdparty/scintilla/src/RESearch.cxx @@ -784,6 +784,7 @@ int RESearch::Execute(CharacterIndexer &ci, int lp, int endp) { lp++; if (lp >= endp) /* if EOS, fail, else fall through. */ return 0; + // Falls through. default: /* regular matching all the way. */ while (lp < endp) { ep = PMatch(ci, lp, endp, ap);