First pass fixing compilation warnings

This commit is contained in:
Antoine Pilote
2024-08-15 12:45:42 -04:00
parent a817001c53
commit daa640cc7c
30 changed files with 63 additions and 478 deletions

View File

@@ -509,7 +509,7 @@ namespace Nuake
std::vector<json> entities = std::vector<json>();
for (Entity e : GetAllEntities())
{
std::async(std::launch::async, [&]() {
auto returnValue = std::async(std::launch::async, [&]() {
entities.push_back(e.Serialize());
});
}