diff options
author | Griffin Smith <root@gws.fyi> | 2019-08-03T17·14-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2019-08-04T00·31-0400 |
commit | 82cefedab9e44b48f4d3cc08b0f6e002ae383c9d (patch) | |
tree | adc553136987cdbd69caf9e1aa362d1974c57afd /src/entities/environment.rs | |
parent | 929dac06d0a2df78bbeac5a80c994a38901e5f67 (diff) |
Fix a bunch more Clippy lints, but disable in Circle
The unused error is causing more trouble than it's worth at this point
Diffstat (limited to 'src/entities/environment.rs')
-rw-r--r-- | src/entities/environment.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entities/environment.rs b/src/entities/environment.rs index 042873ec5a12..8f8a56706287 100644 --- a/src/entities/environment.rs +++ b/src/entities/environment.rs @@ -21,7 +21,7 @@ impl Wall { impl display::DrawWithNeighbors for Wall { fn do_draw_with_neighbors<'a, 'b>( &'a self, - out: &'b mut Write, + out: &'b mut dyn Write, neighbors: &'a Neighbors<Vec<&'a Box<dyn Entity>>>, ) -> io::Result<()> { let neighbor_styles: Neighbors<Option<BoxStyle>> = |