Refactor include directives: replace quotes with angle brackets for consistency

This commit is contained in:
whaffman 2025-09-22 23:04:51 +02:00
parent 3eb46dba13
commit c9855fd7e5
7 changed files with 7 additions and 11 deletions

View File

@ -1,6 +1,5 @@
#include "ServerConfig.hpp"
#include <webserv/config/LocationConfig.hpp>
#include <webserv/config/ServerConfig.hpp>
#include <webserv/config/utils.hpp>
#include <webserv/log/Log.hpp>

View File

@ -6,6 +6,7 @@
#include <string>
#include <vector>
// TODO remove implementation details from header
class ServerConfig
{
public:

View File

@ -1,6 +1,6 @@
#pragma once
#include "webserv/config/ServerConfig.hpp"
#include <webserv/config/ServerConfig.hpp>
#include <cstddef>
#include <cstdint>
@ -42,6 +42,7 @@ class HttpRequest
[[nodiscard]] bool parseBufferforBody();
void parseContentLength();
const ServerConfig *serverConfig_;
const Client *client_;

View File

@ -1,5 +1,3 @@
#include <webserv/log/FileChannel.hpp>
#include <webserv/log/Log.hpp>

View File

@ -1,7 +1,6 @@
#include "webserv/log/StdoutChannel.hpp"
#include <webserv/log/Channel.hpp>
#include <webserv/log/Log.hpp>
#include <webserv/log/StdoutChannel.hpp>
#include <iomanip>
#include <iostream>

View File

@ -1,7 +1,6 @@
#include "webserv/socket/Socket.hpp"
#include <webserv/log/Log.hpp>
#include <webserv/server/Server.hpp>
#include <webserv/socket/Socket.hpp>
#include <cstring> // For memset
#include <memory>

View File

@ -1,9 +1,8 @@
#pragma once
#include "webserv/config/ServerConfig.hpp"
#include <webserv/client/Client.hpp>
#include <webserv/config/ConfigManager.hpp>
#include <webserv/config/ServerConfig.hpp>
#include <webserv/socket/Socket.hpp>
#include <functional>