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 has been archived by the owner on Dec 9, 2018. It is now read-only.
Using rust nightly, when running cargo build on current master branch, I get:
src/cols.rs:8:9: 8:13 error: `Cols` does not name a structure [E0071]
src/cols.rs:8 Cols {
^~~~
src/cols.rs:8:9: 8:13 help: run `rustc --explain E0071` to see a detailed explanation
src/rows.rs:8:9: 8:13 error: `Rows` does not name a structure [E0071]
src/rows.rs:8 Rows {
^~~~
src/rows.rs:8:9: 8:13 help: run `rustc --explain E0071` to see a detailed explanation
On rust stable it also doesn't compile, as approx.rs uses #![feature(plugin)].
Concerning the ng branch, it also doesn't compile on rust nightly:
src/nn/network.rs:200:15: 200:16 error: expected `]`, found `,`
src/nn/network.rs:200 a_2[.., 1..] = a_1 * theta_1.t();
^
Could not compile `linalg`.
So... what's the current solution? Thanks!
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Using rust nightly, when running
cargo build
on current master branch, I get:On rust stable it also doesn't compile, as
approx.rs
uses#![feature(plugin)]
.Concerning the
ng
branch, it also doesn't compile on rust nightly:So... what's the current solution? Thanks!
The text was updated successfully, but these errors were encountered: