about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2019-02-25 17:47:12 +0100
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2019-02-25 17:47:12 +0100
commit240fad04f1c5517d5d38ab62c321f09c35a468d1 (patch)
tree37c257cf17d2d8a193315247b5d2b699857db8a1 /src/bootstrap
parentbe23cd9a2d32295240e265aa2ed38bace71aca65 (diff)
downloadrust-240fad04f1c5517d5d38ab62c321f09c35a468d1.tar.gz
rust-240fad04f1c5517d5d38ab62c321f09c35a468d1.zip
Update to last updates
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/test.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs
index 83066468cd4..97a5c500b1a 100644
--- a/src/bootstrap/test.rs
+++ b/src/bootstrap/test.rs
@@ -624,11 +624,11 @@ impl Step for RustdocJSNotStd {
     const DEFAULT: bool = true;
     const ONLY_HOSTS: bool = true;
 
-    fn should_run(run: ShouldRun) -> ShouldRun {
+    fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
         run.path("src/test/rustdoc-js")
     }
 
-    fn make_run(run: RunConfig) {
+    fn make_run(run: RunConfig<'_>) {
         let compiler = run.builder.compiler(run.builder.top_stage, run.host);
         run.builder.ensure(RustdocJSNotStd {
             host: run.host,
@@ -637,7 +637,7 @@ impl Step for RustdocJSNotStd {
         });
     }
 
-    fn run(self, builder: &Builder) {
+    fn run(self, builder: &Builder<'_>) {
         if let Some(ref nodejs) = builder.config.nodejs {
             builder.ensure(crate::doc::Std {
                 target: self.target,