mingw bug
[vg.git] / vg_m.h
diff --git a/vg_m.h b/vg_m.h
index e75e8dc38ce7cb49d25e025ec4fa27b6d147d605..8e6e56c0c425d00f3b07c789c4d3bbcc6dd601fa 100644 (file)
--- a/vg_m.h
+++ b/vg_m.h
@@ -1363,7 +1363,10 @@ static void m4x3_mul( m4x3f a, m4x3f b, m4x3f d )
    d[3][2] = a02*b30 + a12*b31 + a22*b32 + a32;
 }
 
-static inline void m4x3_mulv( m4x3f m, v3f v, v3f d ) 
+#if 0 /* shat appf mingw wstringop-overflow */
+inline
+#endif
+static void m4x3_mulv( m4x3f m, v3f v, v3f d ) 
 {
    v3f res;