LibWeb: Add missing String.h include to MimeSniff/MimeType.h

This doesn't cause any compiler errors, but clang-tidy in my editor
certainly complains that this include is missing.
This commit is contained in:
Shannon Booth 2023-09-09 13:20:41 +12:00 committed by Andrew Kaster
parent 27b08c0c74
commit 132b17406b
Notes: sideshowbarker 2024-07-17 07:16:27 +09:00

View File

@ -8,6 +8,7 @@
#pragma once
#include <AK/HashMap.h>
#include <AK/String.h>
namespace Web::MimeSniff {