1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-08-30 18:25:36 +00:00

warning fixes, signed vs unsigned mismatch, cleanups, c++98 compat

many many more to do but it's a little step closer to get rid of warnings
This commit is contained in:
fgenesis 2024-04-16 00:12:56 +02:00
commit dd7ab0448f
45 changed files with 227 additions and 369 deletions

View file

@ -162,7 +162,7 @@ void EventQueue::clear()
eventTimers.clear();
}
int EventQueue::getSize()
size_t EventQueue::getSize()
{
return eventTimers.size();
}