diff --git a/HandmadeMath.h b/HandmadeMath.h index 6c82a66..cc4e9b0 100644 --- a/HandmadeMath.h +++ b/HandmadeMath.h @@ -256,7 +256,7 @@ typedef union HMM_Vec2 #ifdef __cplusplus inline float &operator[](int Index) { return Elements[Index]; } - inline const float& operator[](int Index) const { return Elements[Index]; } + inline const float &operator[](int Index) const { return Elements[Index]; } #endif } HMM_Vec2;