diff --git a/src/string_search.h b/src/string_search.h index e7b13559416cb3..0426fd840c0bd1 100644 --- a/src/string_search.h +++ b/src/string_search.h @@ -252,7 +252,7 @@ inline const void* MemrchrFill(const void* haystack, uint8_t needle, // `subject`. Does not check that the whole pattern matches. template inline size_t FindFirstCharacter(Vector pattern, - Vector subject, size_t index) { + Vector subject, size_t index) { const Char pattern_first_char = pattern[0]; const size_t max_n = (subject.length() - pattern.length() + 1);