Skip to content

Commit 59f6d1b

Browse files
committed
chore: fix symbol visibility
1 parent 2e893d9 commit 59f6d1b

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

include/boost/http_proto/server/route_handler.hpp

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,7 @@ post(F&& f) -> route_result
214214
if(task_)
215215
detail::throw_invalid_argument();
216216

217-
struct BOOST_HTTP_PROTO_SYMBOL_VISIBLE
218-
immediate : suspender::owner
217+
struct immediate : suspender::owner
219218
{
220219
route_result rv;
221220
bool set = false;
@@ -227,9 +226,7 @@ post(F&& f) -> route_result
227226
}
228227
};
229228

230-
class BOOST_HTTP_PROTO_SYMBOL_VISIBLE model
231-
: public task
232-
, public suspender::owner
229+
class model: public task, suspender::owner
233230
{
234231
public:
235232
model(route_params& p,

0 commit comments

Comments
 (0)