diff options
author | Zufu Liu <unknown> | 2019-01-06 12:06:48 +1100 |
---|---|---|
committer | Zufu Liu <unknown> | 2019-01-06 12:06:48 +1100 |
commit | 24b2acfddea20bbcdb6c714dcdc96389ab4f54b5 (patch) | |
tree | 1a438cf0677801a264f5d6047118b001286b0d89 /src/ContractionState.cxx | |
parent | b7937365db8e0a049155fda1b31d2c3ff5321547 (diff) | |
download | scintilla-mirror-24b2acfddea20bbcdb6c714dcdc96389ab4f54b5.tar.gz |
Backport: Bug [#2068]. Fix some clang-tidy warnings.
Backport of changeset 7195:ce4394f12c76.
Diffstat (limited to 'src/ContractionState.cxx')
-rw-r--r-- | src/ContractionState.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ContractionState.cxx b/src/ContractionState.cxx index 5937be6fc..c5e352180 100644 --- a/src/ContractionState.cxx +++ b/src/ContractionState.cxx @@ -210,7 +210,7 @@ Sci::Line ContractionState<LINE>::DocFromDisplay(Sci::Line lineDisplay) const { template <typename LINE> void ContractionState<LINE>::InsertLines(Sci::Line lineDoc, Sci::Line lineCount) { - for (int l = 0; l < lineCount; l++) { + for (Sci::Line l = 0; l < lineCount; l++) { InsertLine(lineDoc + l); } Check(); |