mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 02:08:49 +12:00
Fix signed-unsigned comparisons and mark warning as error (part 2).
This commit is contained in:
parent
771eff273b
commit
92e3eaf3ff
68 changed files with 194 additions and 202 deletions
|
@ -30,7 +30,7 @@ bool lv2_event_queue::send(lv2_event event)
|
|||
|
||||
if (sq.empty())
|
||||
{
|
||||
if (events.size() < this->size)
|
||||
if (events.size() < this->size + 0u)
|
||||
{
|
||||
// Save event
|
||||
events.emplace_back(event);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue