aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlib/PropSetSimple.cxx
diff options
context:
space:
mode:
authormitchell <unknown>2018-05-05 21:09:21 -0400
committermitchell <unknown>2018-05-05 21:09:21 -0400
commitc60d0059738eb49622dfe94e69d371856748ec18 (patch)
tree05661173868a8404e68720bdacec575292a7a896 /lexlib/PropSetSimple.cxx
parent50e62c7c057261b8d1bd10c05216486549a9b604 (diff)
downloadscintilla-mirror-c60d0059738eb49622dfe94e69d371856748ec18.tar.gz
Backport: Make some changes recommended by clang-tidy.
Backport of changeset 6687:4cbf987c7590.
Diffstat (limited to 'lexlib/PropSetSimple.cxx')
-rw-r--r--lexlib/PropSetSimple.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlib/PropSetSimple.cxx b/lexlib/PropSetSimple.cxx
index e8f0364fa..ed473bc3b 100644
--- a/lexlib/PropSetSimple.cxx
+++ b/lexlib/PropSetSimple.cxx
@@ -100,7 +100,7 @@ struct VarChain {
static int ExpandAllInPlace(const PropSetSimple &props, std::string &withVars, int maxExpands, const VarChain &blankVars) {
size_t varStart = withVars.find("$(");
while ((varStart != std::string::npos) && (maxExpands > 0)) {
- const size_t varEnd = withVars.find(")", varStart+2);
+ const size_t varEnd = withVars.find(')', varStart+2);
if (varEnd == std::string::npos) {
break;
}