From 70a507f37164bfaa3f8d59202b4d0aba2d8915b1 Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Mon, 29 Aug 2022 23:05:34 +0200 Subject: [PATCH] Update restriction_parser.cpp --- src/extractor/restriction_parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extractor/restriction_parser.cpp b/src/extractor/restriction_parser.cpp index dd2c3ff4b..8caf3adcd 100644 --- a/src/extractor/restriction_parser.cpp +++ b/src/extractor/restriction_parser.cpp @@ -267,7 +267,7 @@ bool RestrictionParser::ShouldIgnoreRestriction(const std::string &except_tag_st // split `except_tag_string` by semicolon and check if any of items is in `restrictions` std::string current_string; - for (auto index : util::irange(0, except_tag_string.size()) + for (auto index : util::irange(0, except_tag_string.size())) { const auto ch = except_tag_string[index]; if (ch != ';')