On 09/11/2024 4:03 AM, Maximilian Naderer wrote:
On Friday, 8 November 2024 at 11:21:33 UTC, Richard (Rikki) Andrew
Cattermole wrote:
On 09/11/2024 12:10 AM, Maximilian Naderer wrote:
Is the -betterC config not creating the equals, hash functions which
are generated by D ?
I just checked, no.
On Friday, 8 November 2024 at 11:21:33 UTC, Richard (Rikki)
Andrew Cattermole wrote:
On 09/11/2024 12:10 AM, Maximilian Naderer wrote:
Is the -betterC config not creating the equals, hash functions
which are generated by D ?
I just checked, no.
Hello Rikki,
Thanks for checking. Just to conf
On 09/11/2024 12:10 AM, Maximilian Naderer wrote:
Is the -betterC config not creating the equals, hash functions which are
generated by D ?
I just checked, no.
I have the following struct with i compile with -betterC into a
static library.
```d
struct SubmitDesc {
union {
uint[4] viewport;
struct {
uint vpx;
uint vpy;
uint vpw;
uint vph;
}
}
union {
float[4] c