From 47a974e0dd06a9a78ceb5aeb1fe3249845baab0b Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Fri, 10 May 2019 00:35:30 -0700 Subject: Remove useless increments Thank you to @ya-ming for pointing this out! --- src/Uri.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Uri.cpp b/src/Uri.cpp index fef7fb6..e2448bb 100644 --- a/src/Uri.cpp +++ b/src/Uri.cpp @@ -258,10 +258,10 @@ namespace { state = ValidationState::COLON_BUT_NO_GROUPS_YET; } else if (DIGIT.Contains(c)) { potentialIpv4AddressStart = position; - ++numDigits = 1; + numDigits = 1; state = ValidationState::IN_GROUP_COULD_BE_IPV4; } else if (HEXDIG.Contains(c)) { - ++numDigits = 1; + numDigits = 1; state = ValidationState::IN_GROUP_NOT_IPV4; } else { return false; -- cgit v1.2.3