From 93949788917548f9e3c4fa0c9449704c35248ce1 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Fri, 12 Jan 2024 10:32:49 +0100 Subject: [PATCH] 1531280 COPY_INSTEAD_OF_MOVE --- ext/yahttp/yahttp/router.hpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/ext/yahttp/yahttp/router.hpp b/ext/yahttp/yahttp/router.hpp index c9332078d0..be52f831b0 100644 --- a/ext/yahttp/yahttp/router.hpp +++ b/ext/yahttp/yahttp/router.hpp @@ -57,22 +57,22 @@ is consumed but not stored. Note that only path is matched, scheme, host and url static bool match(const std::string& route, const URL& requrl, std::map& params); //& params) { return router.match(route, requrl, params); }; static RoutingResult Route(Request *req, THandlerFunction& handler) { return router.route(req, handler); }; //url.path, returns RouteFound if route is found and method matches, RouteNoMethod if route is seen but method did match, and RouteNotFound if not found. static void PrintRoutes(std::ostream &os) { router.printRoutes(os); }; // URLFor(const std::string &name, const strstr_map_t& arguments) { return router.urlFor(name,arguments); }; //