Avoid an extra move when returning 404

In this case, we can simply handle the response cases in place, rather
than moving from a newly constructed object.

Change-Id: I95c7a4f3e302700a750f9c0f575b88ae4150fa15
Signed-off-by: Ed Tanous <ed.tanous@intel.com>
diff --git a/crow/include/crow/routing.h b/crow/include/crow/routing.h
index 0fe692e..f3fedd8 100644
--- a/crow/include/crow/routing.h
+++ b/crow/include/crow/routing.h
@@ -910,7 +910,7 @@
 
     if (!rule_index) {
       CROW_LOG_DEBUG << "Cannot match rules " << req.url;
-      res = response(boost::beast::http::status::not_found);
+      res.result(boost::beast::http::status::not_found);
       res.end();
       return;
     }