You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 19, 2021. It is now read-only.
Using latest nightly, will not compile since std::f32 got imported twice in src/core/camera/mod.rs
Expected Behavior 🤔
Successful compilation.
Current Behavior 😔
error: the item `f32` is imported redundantly
--> src/core/camera/mod.rs:109:13
|
18 | use std::f32;
| -------- the item `f32` is already imported here
...
109 | use std::f32;
| ^^^^^^^^
|
note: lint level defined here
--> src/main.rs:19:9
|
19 | #![deny(unused_imports)]
| ^^^^^^^^^^^^^^
error: aborting due to previous error
error: Could not compile `litecraft`.
Using latest nightly, will not compile since std::f32 got imported twice in src/core/camera/mod.rs
Expected Behavior 🤔
Successful compilation.
Current Behavior 😔
Possible Solution 😅
Remove the line at 109 in src/core/camera/mod.rs
Steps to Reproduce 😱