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
Refactor: Remove 'in' modifier for small ID structs
- Removed `in` modifier from `B2ShapeId`, `B2BodyId`, and `B2ContactId` parameters in various functions and delegates.
- These structs are small (8 bytes or less), so passing them by value is more efficient than passing by reference.
- This change avoids potential pointer indirection overhead and aligns with C# performance best practices for small structs.
0 commit comments