1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 09:34:57 +09:00

LibWeb: Add missing FlyString include to CSS/URL.h

clangd is complaining about this.
This commit is contained in:
Timothy Flynn 2025-06-02 17:56:11 -04:00 committed by Tim Flynn
parent 6dba720370
commit 3ae2220534
Notes: github-actions[bot] 2025-06-03 23:31:51 +00:00

View file

@ -6,6 +6,7 @@
#pragma once
#include <AK/FlyString.h>
#include <AK/String.h>
#include <AK/Vector.h>
#include <LibGC/Ptr.h>
@ -35,6 +36,7 @@ public:
private:
using Value = Variant<CrossOriginModifierValue, ReferrerPolicyModifierValue, FlyString>;
RequestURLModifier(Type, Value);
Type m_type;
Value m_value;
};