From 2699e17468ffe73b3d33576fa136bb1a6d076c12 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 23 Jun 2018 21:59:36 +0200 Subject: [PATCH 1/2] Update rustc in travis --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8a05e2a5..297ab4ae 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,14 +16,14 @@ matrix: - bash ./scripts/branch-contains-no-tmp-commits - bash ./scripts/version-updated - language: rust - rust: 1.24.0 + rust: 1.25.0 cache: cargo: true script: - cargo build --all --all-features -j 1 || exit 1 - cargo test --all --all-features -j 1 || exit 1 - language: rust - rust: 1.25.0 + rust: 1.26.0 cache: cargo: true script: From e0156bf4adc1d28f7b41a9266472c1ea6e38dfca Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 27 Jun 2018 00:43:24 +0200 Subject: [PATCH 2/2] Fix: Use unused result --- bin/domain/imag-habit/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/domain/imag-habit/src/main.rs b/bin/domain/imag-habit/src/main.rs index 218a0d67..6d195ba8 100644 --- a/bin/domain/imag-habit/src/main.rs +++ b/bin/domain/imag-habit/src/main.rs @@ -197,7 +197,7 @@ fn delete(rt: &Runtime) { } }; - fle + let _ = fle .linked_instances() .map_err_trace_exit_unwrap(1) .trace_unwrap_exit(1)