From 9bbb4741b4f7c8fc5083c8a56d8d301a8abc25a3 Mon Sep 17 00:00:00 2001 From: Florian Albrechtskirchinger Date: Mon, 3 Feb 2025 04:32:33 +0100 Subject: [PATCH] Run clang-format (#2037) --- httplib.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/httplib.h b/httplib.h index 3a72d55..cc9cbf3 100644 --- a/httplib.h +++ b/httplib.h @@ -219,7 +219,7 @@ using socket_t = SOCKET; #include #include #ifndef __VMS - #include +#include #endif #include #include @@ -4458,9 +4458,9 @@ bool read_content(Stream &strm, T &x, size_t payload_max_length, int &status, ret = read_content_without_length(strm, out); } else { auto is_invalid_value = false; - auto len = get_header_value_u64(x.headers, "Content-Length", - (std::numeric_limits::max)(), - 0, is_invalid_value); + auto len = get_header_value_u64( + x.headers, "Content-Length", + (std::numeric_limits::max)(), 0, is_invalid_value); if (is_invalid_value) { ret = false;