Rua
Rua
When I run Git from the terminal, it never needs the key from the SSH agent. It will directly retrieve it from ksshaskpass. So it works without ever doing `ssh-add`....
> I solved this by setting the `GIT_ASKPASS` environment variable and setting `git.useIntegratedAskPass` to false, as mentioned in [this comment](https://github.com/microsoft/vscode/issues/57488#issuecomment-2072932511). That seems to have fixed it for me! But it...
#1355 addresses the general issue, by using raw borrows everywhere instead of regular borrows. Using `Cell` and other `Sync`-ifiers could be added later.
Automatically sending `KeyUp` events just shifts the problem back to `KeyDown` events. What if the window loses focus, the user releases the key, and then presses it again before refocusing...
`DeviceAlignment::of` doesn't currently appear to have any way to return an alignment different from the host alignment. It just calls `std::mem::align_of` internally, which is incorrect here. So Vulkano needs a...
The spec keeps changing the numbers, so this is just outdated documentation. The numbers could be updated, but there's hopefully a way to not keep chasing a moving target...
I investigated the problem, and traced it down to these closures: https://github.com/immunant/c2rust/blob/edcefc2b249da93de9027d7910c1fe75629a295a/c2rust-transpile/src/translator/literals.rs#L227-L241 In a static context, the literals are wrapped in an an additional `ConstantExpr`, which these closures do not...
I ran into an unexpected snag with this one: the `stmts_block` helper function is adding back the semicolon if it's missing. Ideally I would just remove that behaviour, but that...
I was able to remove the semicolon-adding code from `stmts_block` without any adverse effects in the tests, so let's hope it wasn't needed anywhere else. I think this is ready...
In order to solve #1506 I had to add another variant to the `ImplicitReturnType` enum, because with `Void` it was adding a `return` that doesn't belong there. I don't know...