Skip to content

Commit 8d9d48c

Browse files
committed
Remove unused includes
1 parent 6212778 commit 8d9d48c

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

include/output/output.hpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
#ifndef OUTPUT_HPP
22
#define OUTPUT_HPP
33

4-
#include <iostream>
5-
6-
#include "colors.hpp"
7-
#include "webserv.hpp"
4+
#include <string>
85

96
typedef enum output_flag_e { SET = 1, PRINT = 2, UNSET = 4 } output_flag_t;
107

src/output/output.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#include "output.hpp"
22

3+
#include <iostream>
4+
5+
#include "colors.hpp"
6+
#include "webserv.hpp"
7+
38
int getBit(output_flag_t flag, int value) { return value & flag; }
49

510
void printInfo(int flags) {

0 commit comments

Comments
 (0)