Skip to content

Commit 3ecb7b5

Browse files
author
Sebastiano Merlino
committed
Partially solved undefined symbol in wrappers
1 parent 1b2ab70 commit 3ecb7b5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/httpserver/http_response.hpp

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,9 +364,13 @@ class switch_protocol_response : public http_response
364364
public:
365365
switch_protocol_response
366366
(
367-
);
367+
)
368+
{
369+
}
368370

369-
switch_protocol_response(const http_response& b) : http_response(b) { }
371+
switch_protocol_response(const http_response& b) : http_response(b)
372+
{
373+
}
370374
protected:
371375
virtual void get_raw_response(MHD_Response** res, bool* found)
372376
{

0 commit comments

Comments
 (0)