diff options
Diffstat (limited to 'Libraries/LibHTTP/HttpResponse.cpp')
-rw-r--r-- | Libraries/LibHTTP/HttpResponse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibHTTP/HttpResponse.cpp b/Libraries/LibHTTP/HttpResponse.cpp index dc8f6468f4..db5711ff5c 100644 --- a/Libraries/LibHTTP/HttpResponse.cpp +++ b/Libraries/LibHTTP/HttpResponse.cpp @@ -28,7 +28,7 @@ namespace HTTP { -HttpResponse::HttpResponse(int code, HashMap<String, String>&& headers, ByteBuffer&& payload) +HttpResponse::HttpResponse(int code, HashMap<String, String, CaseInsensitiveStringTraits>&& headers, ByteBuffer&& payload) : Core::NetworkResponse(move(payload)) , m_code(code) , m_headers(move(headers)) |