Mark Blum
Mark Blum
There are a couple places in the code where you do something along the lines of ```rust let mut event: SomeType = mem::MaybeUninit::uninit().assume_init(); ``` This is immediately undefined behavior, regardless...
Currently, an entity's shape is stored on a child entity, when it could just as well be stored directly on the parent entity itself. While storing it directly on the...
When the following code is run, loom claims it deadlocks. This should not happen since the other thread should become unblocked and exit once the last sender gets dropped in...
I have found a matrix that causes the svd method to go into an infinite loop, or at least doesn't seem to halt. ```rust #[macro_use] extern crate rulinalg; fn main()...
Added a test to make sure it is row major as well I wonder if a better example could be made. The current one is completely symmetrical and doesn't change...
The following code gives a compile time error about overflowing literals ```rs let _foo = serde_json::json!({ "five_billion": 5_000_000_000 }); ``` ```rs error: literal out of range for `i32` --> src/main.rs:2:52...