From e9b746a7230ec1e89ec1eed138149a55dd62f12f Mon Sep 17 00:00:00 2001 From: Ali Mohammad Pur Date: Fri, 14 May 2021 21:18:15 +0430 Subject: [PATCH] AK: Include HashTable.h in StringImpl.cpp This was used without an include, I'm not sure how it didn't break before :P --- AK/StringImpl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/AK/StringImpl.cpp b/AK/StringImpl.cpp index c46ff2ae6c4..b7639b11eee 100644 --- a/AK/StringImpl.cpp +++ b/AK/StringImpl.cpp @@ -5,6 +5,7 @@ */ #include +#include #include #include #include