From 1000e36d1bc4555f5fd2f65082399b437b9cf7c3 Mon Sep 17 00:00:00 2001 From: David M Date: Sat, 24 Jan 2015 19:42:38 +0100 Subject: Removed extra ';' after macros This removes gcc and clang warnings (src/linmath.h:44:24: warning: extra ';' outside of a function [-Wextra-semi]) --- linmath.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'linmath.h') diff --git a/linmath.h b/linmath.h index a61d707..f852c00 100644 --- a/linmath.h +++ b/linmath.h @@ -41,9 +41,9 @@ static inline void vec##n##_norm(vec##n r, vec##n const v) \ vec##n##_scale(r, v, k); \ } -LINMATH_H_DEFINE_VEC(2); -LINMATH_H_DEFINE_VEC(3); -LINMATH_H_DEFINE_VEC(4); +LINMATH_H_DEFINE_VEC(2) +LINMATH_H_DEFINE_VEC(3) +LINMATH_H_DEFINE_VEC(4) static inline void vec3_mul_cross(vec3 r, vec3 const a, vec3 const b) { -- cgit v1.2.3-54-g00ecf