From af685277f14134e07de67667b05d7afe98aa85ac Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 30 Oct 2018 11:10:45 +0100 Subject: [PATCH] Fix last clippy warning --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 29ea930..c1cc455 100644 --- a/.travis.yml +++ b/.travis.yml @@ -96,9 +96,10 @@ install: - rustup target add thumbv7m-none-eabi - rustup component add clippy-preview + #TODO: remove -A clippy::new_ret_no_self when new version of clippy gets released! script: - cargo check - - cargo clippy --all-targets --all-features -- -D warnings + - cargo clippy --all-targets --all-features -- -D warnings -A clippy::new_ret_no_self - cargo test --all-features --release - cargo doc --all-features --release - cd examples/embedded_linux_epd4in2 && cargo check && cd ../../