diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-07-05 15:19:12 +0100 |
---|---|---|
committer | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-07-05 15:19:12 +0100 |
commit | ec6f71576ace170fd306a68f77e5c5e9646d15be (patch) | |
tree | d39853a3366ea849b60b342240a5908f16899dcf /crates/ra_db/src | |
parent | 3be2d1db6c04a99efdd32b1af724caeb10d9676b (diff) | |
parent | 98d769a799e430f152e573c28f101d9d6aee5376 (diff) |
Merge #1491
1491: More clippy r=matklad a=kjeremy
A few more clippy changes.
I'm a little unsure of the second commit. It's the trivially_copy_pass_by_ref lint and there are a number of places in the code we could use it if it makes sense.
Co-authored-by: Jeremy Kolb <[email protected]>
Diffstat (limited to 'crates/ra_db/src')
-rw-r--r-- | crates/ra_db/src/input.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/ra_db/src/input.rs b/crates/ra_db/src/input.rs index 2d563bd01..ad8e10c52 100644 --- a/crates/ra_db/src/input.rs +++ b/crates/ra_db/src/input.rs | |||
@@ -131,7 +131,8 @@ impl CrateGraph { | |||
131 | if self.dfs_find(from, to, &mut FxHashSet::default()) { | 131 | if self.dfs_find(from, to, &mut FxHashSet::default()) { |
132 | return Err(CyclicDependencies); | 132 | return Err(CyclicDependencies); |
133 | } | 133 | } |
134 | Ok(self.arena.get_mut(&from).unwrap().add_dep(name, to)) | 134 | self.arena.get_mut(&from).unwrap().add_dep(name, to); |
135 | Ok(()) | ||
135 | } | 136 | } |
136 | 137 | ||
137 | pub fn is_empty(&self) -> bool { | 138 | pub fn is_empty(&self) -> bool { |