fix: Drop::data is no longer void const*, instead void*

This commit is contained in:
Sara 2024-01-25 09:59:13 +01:00
parent a978d140c7
commit 58b41bd1d2

View file

@ -8,7 +8,7 @@ typedef struct {
} IDrop; } IDrop;
typedef struct { typedef struct {
void const* data; void* data;
IDrop const* tc; IDrop const* tc;
} Drop; } Drop;