mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-17 02:08:29 +00:00
Fixed variable capture problem.
This commit is contained in:
parent
bad43c66d7
commit
ace3bb6caf
2 changed files with 7 additions and 1 deletions
|
@ -416,7 +416,7 @@ inline void Server::process_request(FILE* fp_read, FILE* fp_write)
|
|||
svr->run(), svr.reset())
|
||||
|
||||
#define GET(url, body) \
|
||||
svr->get(url, [](httpsvrkit::Context& cxt) { \
|
||||
svr->get(url, [&](httpsvrkit::Context& cxt) { \
|
||||
const auto& req = cxt.request; \
|
||||
auto& res = cxt.response; \
|
||||
body \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue