Skip to content

Commit e62d47a

Browse files
committed
Format file with clang 14
1 parent f7228f0 commit e62d47a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

include/http/Http.hpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@
1212
// WEBSERV_CONFIG ----------- HTTP VALUES --------------------------
1313
#define PROTOCOL "HTTP"
1414
#define HTTP_VERSION "1.1"
15-
#define HTTP_METHODS {"GET", "HEAD", "OPTIONS", "POST", "PUT", "DELETE"}
15+
#define HTTP_METHODS \
16+
{ "GET", "HEAD", "OPTIONS", "POST", "PUT", "DELETE" }
1617
#define HTTP_DEFAULT_METHOD_COUNT 3
17-
#define HTTP_DEFAULT_METHODS {"GET", "HEAD", "OPTIONS"}
18+
#define HTTP_DEFAULT_METHODS \
19+
{ "GET", "HEAD", "OPTIONS" }
1820
#define HTTP_DEFAULT_MIME "application/octet-stream"
1921
#define MAX_CLIENT_BODY_SIZE 1048576
2022

0 commit comments

Comments
 (0)