HomeWildfire Games

Further cleanup of MikkTSpace

Description

Further cleanup of MikkTSpace

  • Move the * and & to the correct side,
  • Add .0 and 0.f to clearly mark the types
  • Pass pointers instead of arrays
  • Add a newline after forward declaration
  • Add spaces between operators
  • Use c++ cast

Reviewed by: @vladislavbelov

Differential Revision: https://code.wildfiregames.com/D1934

Details

Committed
StanMay 31 2019, 1:03 AM
Reviewer
vladislavbelov
Differential Revision
D1934: Further cleanup for MikkTspace.
Parents
rP22322: Seperate stable from barracks
Branches
Unknown
Tags
Unknown
Build Status
Buildable 7689
Build 12530: Post-Commit BuildJenkins

Event Timeline

elexis added a subscriber: elexis.Jun 25 2019, 5:46 AM

Pass pointers instead of arrays

How are arrays passed?

Stan added a comment.Jun 25 2019, 8:49 AM

Pass pointers instead of arrays

How are arrays passed?

By reference, I meant passing a *type instead of type[]