summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibDiff/Hunks.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibDiff/Hunks.h')
-rw-r--r--Userland/Libraries/LibDiff/Hunks.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibDiff/Hunks.h b/Userland/Libraries/LibDiff/Hunks.h
index dafd61bc1e..63050c12f0 100644
--- a/Userland/Libraries/LibDiff/Hunks.h
+++ b/Userland/Libraries/LibDiff/Hunks.h
@@ -32,6 +32,6 @@ struct Hunk {
Vector<String> added_lines;
};
-Vector<Hunk> parse_hunks(const String& diff);
-HunkLocation parse_hunk_location(const String& location_line);
+Vector<Hunk> parse_hunks(String const& diff);
+HunkLocation parse_hunk_location(String const& location_line);
};