aboutsummaryrefslogtreecommitdiffstats
path: root/components/net/fetch/request.rs
diff options
context:
space:
mode:
authorKeegan McAllister <kmcallister@mozilla.com>2014-09-16 13:00:18 -0700
committerKeegan McAllister <kmcallister@mozilla.com>2014-09-20 13:00:06 -0700
commita640a7c5c34f914d3c8515f9b89ae78919af4913 (patch)
tree9677c1626b445a50bfedfbe82fe426578c64996d /components/net/fetch/request.rs
parent8a7eefefd52f7e202069d6a58853d8f31e2c4113 (diff)
downloadservo-a640a7c5c34f914d3c8515f9b89ae78919af4913.tar.gz
servo-a640a7c5c34f914d3c8515f9b89ae78919af4913.zip
Upgrade to rustc 0.12.0-pre (4d2af3861 2014-09-17 15:51:11 +0000)
Diffstat (limited to 'components/net/fetch/request.rs')
-rw-r--r--components/net/fetch/request.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/net/fetch/request.rs b/components/net/fetch/request.rs
index c14efe9c59e..da933002fb8 100644
--- a/components/net/fetch/request.rs
+++ b/components/net/fetch/request.rs
@@ -79,7 +79,7 @@ pub struct Request {
pub manual_redirect: bool,
pub redirect_count: uint,
pub response_tainting: ResponseTainting,
- pub cache: Option<Box<CORSCache>>
+ pub cache: Option<Box<CORSCache+'static>>
}
impl Request {