Skip to content

Commit ae13fc7

Browse files
addaleaxMyles Borins
authored and
Myles Borins
committed
src: fix FindFirstCharacter argument alignment
PR-URL: #6511 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Trevor Norris <[email protected]>
1 parent 395b710 commit ae13fc7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/string_search.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,8 @@ inline uint8_t GetHighestValueByte(uint8_t character) { return character; }
276276

277277
template <typename PatternChar, typename SubjectChar>
278278
inline size_t FindFirstCharacter(Vector<const PatternChar> pattern,
279-
Vector<const SubjectChar> subject, size_t index) {
279+
Vector<const SubjectChar> subject,
280+
size_t index) {
280281
const PatternChar pattern_first_char = pattern[0];
281282
const size_t max_n = (subject.length() - pattern.length() + 1);
282283

0 commit comments

Comments
 (0)