Feoramund
Feoramund
## Context While looking into #3463, I noticed I could cause an unrelated panic by bitwise-notting an integer type. ``` NOT FOUND lb_type_info_index: uint @ index 78 max count: 0...
While investigating #2746, I noticed this was happening for UNIX threads too. I was able to fix and test it for threads on Linux, but I do not have a...
### What Operating System(s) are you seeing this problem on? Linux X11 ### Which Wayland compositor or X11 Window manager(s) are you using? `awesomeWM` 4.3 ### WezTerm version wezterm 20240203-110809-5046fc22...
This should fix issues where `N00 / (pow+2)` results in a different number than `N / pow`. @karl-zylinski Would you be able to try this out and let me know...
I'd like to get some extra eyes on this. This is a minimal syscall-based implementation to get FreeBSD working with the `net` package. I've made sure tests pass, and I...
I wrote these for my ongoing work with FreeBSD.
**UPDATE:** Alright, I went the long way around, but this new fix should satisfy everyone. I've re-implemented the squiggles, except this time I'm using a library I wrote based off...
Here's a minimal program to test. Note the space between the `0x` and `1`. ```odin package silent main :: proc() { a := 0x 1 } ``` And the error...
```odin package main S :: struct {i,j: int} main :: proc () { // This evokes an error: s1: #soa[2]S = {{i = 1, j = 2}, {i = 3,...
I tried to make a quaternion, and any method other than direct field assignment after definition caused either an assertion failure or a panic. I saw the first error and...