refactor: replace std::list with std::vector

Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
Octol1ttle 2026-01-21 12:19:55 +05:00
parent ef747055af
commit 19b9557c19
No known key found for this signature in database
GPG key ID: B77C34313AEE1FFF
14 changed files with 24 additions and 24 deletions

View file

@ -29,7 +29,7 @@
#include <optional>
static std::list<Version> mcVersions(BaseInstance* inst)
static std::vector<Version> mcVersions(BaseInstance* inst)
{
return { static_cast<MinecraftInstance*>(inst)->getPackProfile()->getComponent("net.minecraft")->getVersion() };
}