util/MimeType: add missing include

This commit is contained in:
Max Kellermann 2024-05-10 17:18:05 +02:00 committed by Max Kellermann
parent ec8f467585
commit a67f7f88e4
1 changed files with 2 additions and 4 deletions

View File

@ -1,9 +1,9 @@
// SPDX-License-Identifier: BSD-2-Clause
// author: Max Kellermann <max.kellermann@gmail.com>
#ifndef MIME_TYPE_HXX
#define MIME_TYPE_HXX
#pragma once
#include <functional> // for std::less
#include <string>
#include <string_view>
#include <map>
@ -25,5 +25,3 @@ GetMimeTypeBase(std::string_view s) noexcept;
*/
std::map<std::string, std::string, std::less<>>
ParseMimeTypeParameters(std::string_view mime_type) noexcept;
#endif