bfops / playform

Voxel sandbox project in Rust
http://playformdev.blogspot.ca/
MIT License
212 stars 24 forks source link

Fixed some linting issues #187

Closed starfys closed 7 years ago

starfys commented 7 years ago

When trying to compile with rust nightly, version 1.16, I got an error regarding accessing vectors and hashmaps with .get(index).unwrap(). I believe this is due to updates in rust-clippy. I changed the statements as the compiler asked, and was able to compile.

bfops commented 7 years ago

Great, thanks! Clippy seems to be the main source of breakage nowadays.