mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-13 03:29:11 +00:00
fix various instances of -1 being assigned to unsigned types
This commit is contained in:
parent
be7c6a0819
commit
e1a3e41bf3
15 changed files with 25 additions and 27 deletions
|
@ -36,7 +36,7 @@ public:
|
|||
private:
|
||||
size_t CalculateHash() const
|
||||
{
|
||||
size_t h = -1;
|
||||
size_t h = SIZE_MAX;
|
||||
|
||||
for (auto word : vid)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue