Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/string_search.h')
-rw-r--r--src/string_search.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string_search.h b/src/string_search.h
index bf246702d7e..a9345eb8029 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 <typename Char>
inline size_t FindFirstCharacter(Vector<const Char> pattern,
- Vector<const Char> subject, size_t index) {
+ Vector<const Char> subject, size_t index) {
const Char pattern_first_char = pattern[0];
const size_t max_n = (subject.length() - pattern.length() + 1);