fix build problem

This commit is contained in:
Chao Mai 2015-07-12 00:43:48 +08:00
parent acf686d3dd
commit 36c90f4401

View File

@ -933,7 +933,7 @@ TEST(simple_url_params)
CROW_ROUTE(app, "/params")
([&last_url_params](const crow::request& req){
last_url_params = move(req.url_params);
last_url_params = boost::move(req.url_params);
return "OK";
});