From 1883d3d72ddf777703b77424b33e4428777bef43 Mon Sep 17 00:00:00 2001 From: Martin Taibr Date: Fri, 30 Nov 2018 21:42:41 +0100 Subject: [PATCH] remove semicolons --- qcsrc/lib/deglobalization.qh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/lib/deglobalization.qh b/qcsrc/lib/deglobalization.qh index 889998057..fb4512653 100644 --- a/qcsrc/lib/deglobalization.qh +++ b/qcsrc/lib/deglobalization.qh @@ -15,8 +15,8 @@ // - this is the only used function that both sets and gets the globals (aim does too but isn't used in our code) #define NEW_VECS(...) EVAL(OVERLOAD(NEW_VECS, __VA_ARGS__)) -#define NEW_VECS_3(forward, right, up) vector forward = '0 0 0'; vector right = '0 0 0'; vector up = '0 0 0'; -#define NEW_VECS_4(forward, right, up, origin) NEW_VECS_3(forward, right, up); vector origin = '0 0 0'; +#define NEW_VECS_3(forward, right, up) vector forward = '0 0 0'; vector right = '0 0 0'; vector up = '0 0 0' +#define NEW_VECS_4(forward, right, up, origin) NEW_VECS_3(forward, right, up); vector origin = '0 0 0' // convenience for deglobalized code - don't use these just to hide that globals are still used #define CLEAR_V_GLOBALS() v_forward = VEC_NAN; v_right = VEC_NAN; v_up = VEC_NAN; -- 2.39.2