CesiumGS / cesium-native

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`AsyncSystem::all()` does not support void futures

jaadelgren opened this issue · comments

Calling AsyncSystem::all() on a vector of futures, which are of the type Future<void>, results in a compile-time error. It looks like the function attempts to store results in a vector, which obviously can't happen for void.