From e331656bb9032bc232584e721d7d4e611d2d42ca Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Wed, 18 Aug 2021 07:22:38 -0400 Subject: [PATCH] AK: Add GenericLexer to forwarding header --- AK/Forward.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AK/Forward.h b/AK/Forward.h index 8d4a9b5e8a..3534cb529e 100644 --- a/AK/Forward.h +++ b/AK/Forward.h @@ -17,6 +17,7 @@ class ByteBuffer; class Bitmap; using ByteBuffer = AK::Detail::ByteBuffer<32>; +class GenericLexer; class IPv4Address; class JsonArray; class JsonObject; @@ -139,6 +140,7 @@ using AK::DuplexMemoryStream; using AK::FixedArray; using AK::FlyString; using AK::Function; +using AK::GenericLexer; using AK::HashMap; using AK::HashTable; using AK::InputBitStream;