1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:27:35 +00:00

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

View file

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