bfops / playform

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

Clippy updated to 0.0.42 and new_ret_no_self allowed #180

Closed aboglioli closed 8 years ago

aboglioli commented 8 years ago

Some changes because playform couldn't be compiled with new rust nightly

bfops commented 8 years ago

Cool, thanks. I'm glad clippy's building again! I'll probably re-disable the new_ret_no_self and fix the warnings at some point, since it seems like a fair thing to complain about.

bfops commented 8 years ago

Build is broken :(

aboglioli commented 8 years ago

cube_shell.rs:160:3: 162:4 error: adding items after statements is confusing, since items exist from the start of the scope, #[deny(items_after_statements)] on by default

You should "#![allow(items_after_statements)]". Clippy is denying some important things.

bfops commented 8 years ago

Okay, I'll just merge this and finish fixing the build.

bfops commented 8 years ago

Fixed!