Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(368)

Unified Diff: runtime/vm/regexp.cc

Issue 2455983002: Small cleanups and linter fixes. (Closed)
Patch Set: Small cleanups Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/parser.cc ('k') | runtime/vm/unibrow.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/regexp.cc
diff --git a/runtime/vm/regexp.cc b/runtime/vm/regexp.cc
index 9edfbf6a7ac66202c4934dade4b375750a8e4309..2b9df9535d20cc03fed86f986866f33126b5428e 100644
--- a/runtime/vm/regexp.cc
+++ b/runtime/vm/regexp.cc
@@ -1234,7 +1234,7 @@ static void SplitSearchSpace(ZoneGrowableArray<int>* ranges,
last - first > kSize * 2 &&
binary_chop_index > *new_start_index &&
ranges->At(binary_chop_index) >= first + 2 * kSize) {
- intptr_t scan_forward_for_section_border = binary_chop_index;;
+ intptr_t scan_forward_for_section_border = binary_chop_index;
intptr_t new_border = (ranges->At(binary_chop_index) | kMask) + 1;
while (scan_forward_for_section_border < end_index) {
« no previous file with comments | « runtime/vm/parser.cc ('k') | runtime/vm/unibrow.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698