Re: [PATCH v2] graph: expose node context as pointers

2024-03-22 Thread Robin Jarry
Hi Tyler, Tyler Retzlaff, Mar 22, 2024 at 17:56: i can answer this! windows toolchains will only require __extension__ qualification on use of statement expressions, so msvc won't require any use of __extension__ in this patch. as a general rule of thumb __extension__ is something you may choo

Re: [PATCH v2] graph: expose node context as pointers

2024-03-22 Thread Tyler Retzlaff
On Fri, Mar 22, 2024 at 05:31:31PM +0100, Robin Jarry wrote: > In some cases, the node context data is used to store two pointers > because the data is larger than the reserved 16 bytes. Having to define > intermediate structures just to be able to cast is tedious. Add two > pointers that take the

[PATCH v2] graph: expose node context as pointers

2024-03-22 Thread Robin Jarry
In some cases, the node context data is used to store two pointers because the data is larger than the reserved 16 bytes. Having to define intermediate structures just to be able to cast is tedious. Add two pointers that take the same space than ctx. Signed-off-by: Robin Jarry --- Notes: v2: