1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:37:35 +00:00

LibDiff: Replace DeprecatedString with StringView in parse_hunk_location

This commit is contained in:
Shannon Booth 2023-06-24 12:40:15 +12:00 committed by Andreas Kling
parent 84e8ff34a2
commit dbd838efdf
2 changed files with 7 additions and 7 deletions

View file

@ -33,5 +33,5 @@ struct Hunk {
};
Vector<Hunk> parse_hunks(DeprecatedString const& diff);
HunkLocation parse_hunk_location(DeprecatedString const& location_line);
HunkLocation parse_hunk_location(StringView location_line);
};