X-Git-Url: https://code.octet-stream.net/hashgood/blobdiff_plain/12939f1c8ec8ecba887c4ea7dca40337ad6832d9..3036c7308170f6c68961e44e61e06727eef78327:/src/main.rs diff --git a/src/main.rs b/src/main.rs index fd965da..f0fc474 100644 --- a/src/main.rs +++ b/src/main.rs @@ -41,11 +41,11 @@ impl Opt { fn get_paste(&self) -> bool { #[cfg(feature = "paste")] { - return self.paste; + self.paste } #[cfg(not(feature = "paste"))] { - return false; + false } } }