mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
LibDiff: Add a forwarding header
This commit is contained in:
parent
84b187e375
commit
696c92882a
Notes:
sideshowbarker
2024-07-17 08:34:29 +09:00
Author: https://github.com/shannonbooth Commit: https://github.com/SerenityOS/serenity/commit/696c92882a Pull-request: https://github.com/SerenityOS/serenity/pull/19835
3 changed files with 18 additions and 1 deletions
|
@ -12,6 +12,7 @@
|
|||
#include <AK/Stream.h>
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <AK/Vector.h>
|
||||
#include <LibDiff/Hunks.h>
|
||||
|
||||
namespace Diff {
|
||||
DeprecatedString generate_only_additions(StringView text)
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include <AK/Error.h>
|
||||
#include <AK/Forward.h>
|
||||
#include <LibDiff/Hunks.h>
|
||||
#include <LibDiff/Forward.h>
|
||||
|
||||
namespace Diff {
|
||||
|
||||
|
|
16
Userland/Libraries/LibDiff/Forward.h
Normal file
16
Userland/Libraries/LibDiff/Forward.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Copyright (c) 2023, Shannon Booth <shannon.ml.booth@gmail.com>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace Diff {
|
||||
|
||||
struct Hunk;
|
||||
struct HunkLocation;
|
||||
struct Line;
|
||||
struct Range;
|
||||
|
||||
}
|
Loading…
Reference in a new issue