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
When assigning to uint16_t, doing uint16_t x = uint16_t(a) + uint16_t(b) is maybe not doing what one expects because uint16_t(a) + uint16_t(b) is promoted to int... and then you are left with an implicit cast back to uint16_t. (#34)
0 commit comments