Skip to content

Commit

Permalink
chore: 🚨 export HttpConnection public methods
Browse files Browse the repository at this point in the history
  • Loading branch information
jontitorr committed Jan 1, 2024
1 parent 52d3d54 commit ce2adf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/ekizu/http.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ using HttpStatus = http::status;
struct HttpConnection {
HttpConnection(const HttpConnection &) = delete;
HttpConnection &operator=(const HttpConnection &) = delete;
HttpConnection(HttpConnection &&) noexcept;
HttpConnection &operator=(HttpConnection &&) noexcept;
EKIZU_EXPORT HttpConnection(HttpConnection &&) noexcept;
EKIZU_EXPORT HttpConnection &operator=(HttpConnection &&) noexcept;
EKIZU_EXPORT ~HttpConnection();

[[nodiscard]] EKIZU_EXPORT static Result<HttpConnection> connect(
Expand Down

0 comments on commit ce2adf9

Please sign in to comment.