Browse Source

fix warning
gcc:
```
error: extra ‘;’ [-Werror=pedantic]
```

Cedric Guillemet 5 years ago
parent
commit
3d5d56fef5
1 changed files with 15 additions and 15 deletions
  1. 15 15
      include/bx/inline/simd128_sse.inl

+ 15 - 15
include/bx/inline/simd128_sse.inl

@@ -41,21 +41,21 @@ namespace bx
 				return (_mask) == (_mm_movemask_ps(_test)&(_mask) );             \
 				return (_mask) == (_mm_movemask_ps(_test)&(_mask) );             \
 			}
 			}
 
 
-BX_SIMD128_IMPLEMENT_TEST(x    , 0x1);
-BX_SIMD128_IMPLEMENT_TEST(y    , 0x2);
-BX_SIMD128_IMPLEMENT_TEST(xy   , 0x3);
-BX_SIMD128_IMPLEMENT_TEST(z    , 0x4);
-BX_SIMD128_IMPLEMENT_TEST(xz   , 0x5);
-BX_SIMD128_IMPLEMENT_TEST(yz   , 0x6);
-BX_SIMD128_IMPLEMENT_TEST(xyz  , 0x7);
-BX_SIMD128_IMPLEMENT_TEST(w    , 0x8);
-BX_SIMD128_IMPLEMENT_TEST(xw   , 0x9);
-BX_SIMD128_IMPLEMENT_TEST(yw   , 0xa);
-BX_SIMD128_IMPLEMENT_TEST(xyw  , 0xb);
-BX_SIMD128_IMPLEMENT_TEST(zw   , 0xc);
-BX_SIMD128_IMPLEMENT_TEST(xzw  , 0xd);
-BX_SIMD128_IMPLEMENT_TEST(yzw  , 0xe);
-BX_SIMD128_IMPLEMENT_TEST(xyzw , 0xf);
+BX_SIMD128_IMPLEMENT_TEST(x    , 0x1)
+BX_SIMD128_IMPLEMENT_TEST(y    , 0x2)
+BX_SIMD128_IMPLEMENT_TEST(xy   , 0x3)
+BX_SIMD128_IMPLEMENT_TEST(z    , 0x4)
+BX_SIMD128_IMPLEMENT_TEST(xz   , 0x5)
+BX_SIMD128_IMPLEMENT_TEST(yz   , 0x6)
+BX_SIMD128_IMPLEMENT_TEST(xyz  , 0x7)
+BX_SIMD128_IMPLEMENT_TEST(w    , 0x8)
+BX_SIMD128_IMPLEMENT_TEST(xw   , 0x9)
+BX_SIMD128_IMPLEMENT_TEST(yw   , 0xa)
+BX_SIMD128_IMPLEMENT_TEST(xyw  , 0xb)
+BX_SIMD128_IMPLEMENT_TEST(zw   , 0xc)
+BX_SIMD128_IMPLEMENT_TEST(xzw  , 0xd)
+BX_SIMD128_IMPLEMENT_TEST(yzw  , 0xe)
+BX_SIMD128_IMPLEMENT_TEST(xyzw , 0xf)
 
 
 #undef BX_SIMD128_IMPLEMENT_TEST
 #undef BX_SIMD128_IMPLEMENT_TEST