Files
Odin/core
Laytan Laats d4d910bcfc fmt: fix optional_len or use_nul_termination being used by both array and elems
```odin
My_Struct :: struct {
	names:      [^]string `fmt:"v,name_count"`,
	name_count: int,
}

main :: proc() {
	name := "hello?"
	foo := My_Struct {
		names = &name,
		name_count = 1,
	}
	fmt.println(foo)
}
```

Before: `My_Struct{names = ["h"], name_count = 1}`
After:  `My_Struct{names = ["hello?"], name_count = 1}`
2024-07-15 18:51:18 +02:00
..
2024-06-29 19:23:58 +01:00
2024-07-14 22:25:26 +01:00
2024-06-30 13:47:11 +05:30
2024-07-14 15:26:59 +01:00
2024-04-19 10:42:09 +02:00
2024-07-14 23:09:58 +01:00
2024-02-08 15:15:16 +00:00
2024-06-29 19:11:36 +01:00
2024-07-05 00:48:08 +02:00