-
-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does not compile with recent versions of rustc. #72
Comments
Is there any change with this? The two rust bugs look thorny, and its really unfortunate that even with Rust 1.0 out, this still isn't working. |
Yes, I believe I am almost done fixing everything. I worked around those bugs at a price of bad syntax at some places (e.g. things like |
HURRAY!!! |
ncollide
currently fails to compile with recent versions ofrustc
. The main reason is the removal of#![old_impl_check]
. This makes the use of associated types mandatory at some places.While I started some work on
nalgebra
andncollide
to fix this, I ran into an ICE − rust-lang/rust#24179. Also, rust-lang/rust#23595 prevents us from fixingncollide
without using associated types onnalgebra
.I have the feeling there is no other solutions than waiting for the compiler bug to be fixed.
The text was updated successfully, but these errors were encountered: