mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-13 23:58:03 -05:00
msvc: set warning level to /W4 globally
And fix a bunch of warnings
This commit is contained in:
@ -55,7 +55,7 @@ TEST_CASE("RingBuffer: Basic Tests", "[common]") {
|
||||
// Pushing more values than space available should partially succeed.
|
||||
{
|
||||
std::vector<char> to_push(6);
|
||||
std::iota(to_push.begin(), to_push.end(), 88);
|
||||
std::iota(to_push.begin(), to_push.end(), static_cast<char>(88));
|
||||
const std::size_t count = buf.Push(to_push);
|
||||
REQUIRE(count == 3U);
|
||||
}
|
||||
|
Reference in New Issue
Block a user