mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-22 15:43:46 +00:00
More compiler warnings
This commit is contained in:
parent
b885ac2d15
commit
02e1749051
1 changed files with 2 additions and 2 deletions
|
@ -146,8 +146,8 @@ TEST(VectorBase, DotProduct) {
|
|||
EXPECT_EQ(v5i.Dot(v5u), static_cast<int>(10));
|
||||
EXPECT_EQ(v5u.Dot(v5i), static_cast<unsigned>(10));
|
||||
|
||||
EXPECT_EQ(v5i * v5u, 10);
|
||||
EXPECT_EQ(v5u * v5i, 10);
|
||||
EXPECT_EQ(v5i * v5u, static_cast<int>(10));
|
||||
EXPECT_EQ(v5u * v5i, static_cast<unsigned>(10));
|
||||
}
|
||||
|
||||
TEST(VectorBase, Length) {
|
||||
|
|
Loading…
Reference in a new issue