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
Compiling with latest nightly causes the following errors:
error[E0075]: SIMD vector length must be a power of two
--> /Users/caelum/.cargo/registry/src/github.com-1ecc6299db9ec823/vek-0.12.0/src/vec.rs:2803:13
|
2803 | pub struct Vec3<T> { pub x:T, pub y:T, pub z:T }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
3195 | / vec_impl_all_vecs!{
3196 | | simd
3197 | | #[repr(simd)]
3198 | | }
| |_____- in this macro invocation
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error[E0075]: SIMD vector length must be a power of two
--> /Users/caelum/.cargo/registry/src/github.com-1ecc6299db9ec823/vek-0.12.0/src/vec.rs:3022:13
|
3022 | pub struct Extent3<T> { pub w:T, pub h:T, pub d:T }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
3195 | / vec_impl_all_vecs!{
3196 | | simd
3197 | | #[repr(simd)]
3198 | | }
| |_____- in this macro invocation
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error[E0075]: SIMD vector length must be a power of two
--> /Users/caelum/.cargo/registry/src/github.com-1ecc6299db9ec823/vek-0.12.0/src/vec.rs:3112:13
|
3112 | pub struct Rgb<T> { pub r:T, pub g:T, pub b:T }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
3195 | / vec_impl_all_vecs!{
3196 | | simd
3197 | | #[repr(simd)]
3198 | | }
| |_____- in this macro invocation
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: aborting due to 3 previous errors
The text was updated successfully, but these errors were encountered:
Compiling with latest nightly causes the following errors:
The text was updated successfully, but these errors were encountered: