Fix a bunch of compiler warnings

This commit is contained in:
Connor McLaughlin
2021-06-03 23:03:06 +10:00
parent 270bf59817
commit 350049826f
23 changed files with 41 additions and 39 deletions

View File

@ -98,7 +98,7 @@ static constexpr bool HostIsLittleEndian()
{
u8 a[4];
u32 b;
} test_val = {1};
} test_val = {{1}};
return test_val.a[0] == 1;
}