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
Change internal integer representation of Value node
A Value node would store an integer as a long. This causes needlessportability risks, as long can be of varying sizes. Change it to useint instead. All code using this was already careful to only store32-bit values anyway.Reviewed-by: Michael Paquier <michael@paquier.xyz>