Skip to content

Commit 9bbb474

Browse files
Run clang-format (#2037)
1 parent 282f2fe commit 9bbb474

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

httplib.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ using socket_t = SOCKET;
219219
#include <pthread.h>
220220
#include <sys/mman.h>
221221
#ifndef __VMS
222-
#include <sys/select.h>
222+
#include <sys/select.h>
223223
#endif
224224
#include <sys/socket.h>
225225
#include <sys/un.h>
@@ -4458,9 +4458,9 @@ bool read_content(Stream &strm, T &x, size_t payload_max_length, int &status,
44584458
ret = read_content_without_length(strm, out);
44594459
} else {
44604460
auto is_invalid_value = false;
4461-
auto len = get_header_value_u64(x.headers, "Content-Length",
4462-
(std::numeric_limits<uint64_t>::max)(),
4463-
0, is_invalid_value);
4461+
auto len = get_header_value_u64(
4462+
x.headers, "Content-Length",
4463+
(std::numeric_limits<uint64_t>::max)(), 0, is_invalid_value);
44644464

44654465
if (is_invalid_value) {
44664466
ret = false;

0 commit comments

Comments
 (0)