You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use intptr_t instead of int64_t for void* state casts (#571)
The yield_synth_events and yield_synth_commands functions use void* as
an opaque integer state. On 32-bit targets (ESP32), casting between
void* and int64_t triggers -Wpointer-to-int-cast warnings since the
sizes differ. intptr_t is guaranteed to match pointer width on all
platforms.
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
0 commit comments