Skip to content

Commit

Permalink
🐛fix header file inclusion
Browse files Browse the repository at this point in the history
🏷️bump version
  • Loading branch information
Lord-Turmoil committed Dec 2, 2024
1 parent 2a1c12a commit e07437d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set(BINARY_NAME minetcore)
set(CMAKE_CXX_STANDARD 17)

project(${PROJECT_NAME}
VERSION 0.1.0
VERSION 1.0.1
DESCRIPTION "A mini HTTP server library with C++"
LANGUAGES CXX)

Expand Down
3 changes: 1 addition & 2 deletions include/minet/core/HttpContext.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@

#include "minet/utils/Parser.h"

#include "io/StreamReader.h"

#include <string>
#include <unordered_map>

Expand All @@ -19,6 +17,7 @@ MINET_BEGIN
namespace io
{
class Stream;
class StreamReader;
}

namespace network
Expand Down
1 change: 1 addition & 0 deletions src/core/HttpContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include "minet/common/Http.h"

#include "io/Stream.h"
#include "io/StreamReader.h"
#include "utils/Network.h"

#include <sstream>
Expand Down
2 changes: 1 addition & 1 deletion tests/AsyncParserTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "minet/utils/Parser.h"

#include "io/Stream.h"
#include "io/StreamReader.h"

#include "doctest.h"

Expand Down

0 comments on commit e07437d

Please sign in to comment.