From 871bbb22367d3214cecc448d65ac029c995f31f1 Mon Sep 17 00:00:00 2001 From: lesleyrs <19632758+lesleyrs@users.noreply.github.com> Date: Sat, 14 Mar 2026 16:39:05 +0100 Subject: [PATCH] fix spacing --- HandmadeMath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;