Soveu

Results 30 comments of Soveu

If you changed the content of the message in compiler code, it also should be changed in .stderr I think.

Hi, could you change the title to "Incorrect cell size with Source Code Pro font after update" or something similar? I was just about to file another issue, but only...

`Board` contains * `Option` (which is an `Option`) * `Color`, which an enum with two variants (kinda like `bool`) It is _very_ dangerous to deref this structure without initializing it...

Well now I have similar problem when working on `hyper` - passing uninitialized data to a function that just writes. Here I would suggest "copy-pasting" `fn make_move` to some sort...

Currently `memory_map` would panic if the buffer is not aligned, but it could just take a slice that is aligned ```rust let buf = &mut buf[buf.as_ptr().align_offset(8)..]; ```

> Alternatively, a new type could be defined to represent a possibly uninitialized buffer with certain alignment requirements, e.g.: > > ```rust > #[repr(C, align(8))] > pub struct MemoryMapBuffer([MaybeUninit]); >...

It is UB, because `size_of_val % align_of_val` must be 0 In this case, the wrapper struct has size in multiple of 8, even though the inner slice can have any...

I tried playing it for few minutes and it generally works on 8.0-5. On Experimental and 9.0 Beta, on exit `fatal error in gc: GetThreadContext failed` error pops up. On...

@kisak-valve I have updated the comment above

Also, idk how should I think about this issue, technically the game worked for 3 years (that's why #1372 is closed) and it looks like a regression from Proton's side,...