Update Rust to 1.12.0-nightly (1deb02ea6 2016-08-12)

This commit is contained in:
Anthony Ramine 2016-08-13 14:55:01 +02:00
parent 9f5122f487
commit fc6faf72ee
7 changed files with 10 additions and 10 deletions

View file

@ -507,13 +507,13 @@ fn includes_credentials(input: &Url) -> bool {
// TODO: `Readable Stream` object is not implemented in Servo yet.
// https://fetch.spec.whatwg.org/#concept-body-disturbed
fn request_is_disturbed(input: &Request) -> bool {
fn request_is_disturbed(_input: &Request) -> bool {
false
}
// TODO: `Readable Stream` object is not implemented in Servo yet.
// https://fetch.spec.whatwg.org/#concept-body-locked
fn request_is_locked(input: &Request) -> bool {
fn request_is_locked(_input: &Request) -> bool {
false
}