From f0e6402fffbd406fb640757fad7aa72ee8d13688 Mon Sep 17 00:00:00 2001 From: Erik Hofman Date: Fri, 23 Dec 2016 15:31:40 +0100 Subject: [PATCH] One more, and hopefully the last, MSVC fix --- simgear/math/simd.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simgear/math/simd.hxx b/simgear/math/simd.hxx index 0f806b24..5dced340 100644 --- a/simgear/math/simd.hxx +++ b/simgear/math/simd.hxx @@ -134,11 +134,11 @@ public: } ~simd4_t(void) {} - inline T (&v4(void))[4] { + inline T (&v4(void))[N] { return vec; } - inline const T (&v4(void) const)[4] { + inline const T (&v4(void) const)[N] { return vec; }