1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-09-01 01:16:59 +02:00

fix stable compiler compatibility

This commit is contained in:
Nikolay Kim
2018-04-29 19:49:26 -07:00
parent 4a29f12876
commit 9c1bda3eca
2 changed files with 5 additions and 5 deletions

View File

@@ -184,7 +184,7 @@ impl<S: 'static> RouteHandler<S> for Scope<S> {
let path = unsafe { &*(&req.match_info()["tail"] as *const _) };
let path = if path == "" { "/" } else { path };
for (pattern, resource) in self.resources.iter() {
for &(ref pattern, ref resource) in self.resources.iter() {
if pattern.match_with_params(path, req.match_info_mut()) {
let default = unsafe { &mut *self.default.as_ref().get() };