diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2020-09-18 09:49:51 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-09-25 21:18:17 +0200 |
commit | ede5dbd7b3ec1c7240d6ca2693a5ada307338b4c (patch) | |
tree | ee3a79ccadd3eaacfe7da533c71cb401d8146695 /Libraries/LibHTTP/HttpRequest.cpp | |
parent | 64cc3f51d0a1d4ddc68fe9e3b5da2834eac48dae (diff) | |
download | serenity-ede5dbd7b3ec1c7240d6ca2693a5ada307338b4c.zip |
Meta+LibC through LibHTTP: Make clang-format-10 clean
Why break at LibHTTP? Because "Meta+Libraries" would be insanely large,
and breaking between LibHTTP and LibJS makes the commits roughly evenly large.
Diffstat (limited to 'Libraries/LibHTTP/HttpRequest.cpp')
-rw-r--r-- | Libraries/LibHTTP/HttpRequest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibHTTP/HttpRequest.cpp b/Libraries/LibHTTP/HttpRequest.cpp index 075fe55197..8e1fc445f5 100644 --- a/Libraries/LibHTTP/HttpRequest.cpp +++ b/Libraries/LibHTTP/HttpRequest.cpp @@ -188,7 +188,7 @@ Optional<HttpRequest> HttpRequest::from_raw_request(const ByteBuffer& raw_reques return request; } -void HttpRequest::set_headers(const HashMap<String,String>& headers) +void HttpRequest::set_headers(const HashMap<String, String>& headers) { for (auto& it : headers) m_headers.append({ it.key, it.value }); |