From aeffa0d9883e6c72bc4f11276b7803a2670a15c4 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 25 May 2023 17:19:19 +0200 Subject: [PATCH] LibWeb: Make Fetch::Infrastructure::HeaderList::is_empty() public --- Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Headers.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Headers.h b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Headers.h index 3d778c20ec..04694036a7 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Headers.h +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Headers.h @@ -40,6 +40,7 @@ public: using Vector::begin; using Vector::clear; using Vector::end; + using Vector::is_empty; [[nodiscard]] static JS::NonnullGCPtr create(JS::VM&);