From 5476eada003a1fbc182676c625b767efb2c16e6f Mon Sep 17 00:00:00 2001 From: Zufu Liu Date: Sun, 6 Jan 2019 12:06:48 +1100 Subject: Bug [#2068]. Fix some clang-tidy warnings. --- src/ContractionState.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ContractionState.cxx') diff --git a/src/ContractionState.cxx b/src/ContractionState.cxx index 06b3b573d..1dd25cc4d 100644 --- a/src/ContractionState.cxx +++ b/src/ContractionState.cxx @@ -211,7 +211,7 @@ Sci::Line ContractionState::DocFromDisplay(Sci::Line lineDisplay) const { template void ContractionState::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(); -- cgit v1.2.3