X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=vg_m.h;h=8e6e56c0c425d00f3b07c789c4d3bbcc6dd601fa;hb=a6551358fdce559d62406cfd0c14ac49dd095104;hp=e75e8dc38ce7cb49d25e025ec4fa27b6d147d605;hpb=023a4d9f534bbdfc2ff4d85df93c19a29ea4d724;p=vg.git diff --git a/vg_m.h b/vg_m.h index e75e8dc..8e6e56c 100644 --- 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;