diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-14 22:29:06 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-14 23:31:18 +0100 |
commit | 8f7333f080c8f114e97e84323dfdb7e09cf30083 (patch) | |
tree | e31db910ce1fe81413035c6e604d144e7e32c654 /Userland/html.cpp | |
parent | 3bbf4610d24c0dd8f8f1d0b962259c1f7e067a2d (diff) | |
download | serenity-8f7333f080c8f114e97e84323dfdb7e09cf30083.zip |
LibCore: Add a forward declaration header
This patch adds <LibCore/Forward.h> and uses it in various places to
shrink the header dependency graph.
Diffstat (limited to 'Userland/html.cpp')
-rw-r--r-- | Userland/html.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/html.cpp b/Userland/html.cpp index 5e0594763a..67ae7a89f1 100644 --- a/Userland/html.cpp +++ b/Userland/html.cpp @@ -24,6 +24,7 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include <AK/ByteBuffer.h> #include <LibCore/File.h> #include <LibGUI/AboutDialog.h> #include <LibGUI/Action.h> |