From 1884e2caf183e08c00ddd8aa1b5f178435ad1b4c Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 22 Sep 2021 15:37:21 +0200 Subject: [PATCH] LibWeb: Add DOM::ExceptionOr to forwarding header --- Userland/Libraries/LibWeb/Forward.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Userland/Libraries/LibWeb/Forward.h b/Userland/Libraries/LibWeb/Forward.h index c590a24c98..6cf15246f3 100644 --- a/Userland/Libraries/LibWeb/Forward.h +++ b/Userland/Libraries/LibWeb/Forward.h @@ -59,6 +59,9 @@ class Timer; class Window; class Range; enum class QuirksMode; + +template +class ExceptionOr; } namespace Web::HTML {