Fix a Linux problem in Datasets

This commit is contained in:
2023-09-30 18:43:47 +02:00
parent fd04e78ad9
commit 294666c516
2 changed files with 4 additions and 5 deletions

View File

@@ -43,7 +43,7 @@ namespace platform {
}
std::string get(const std::string& key)
{
return env[key];
return env.at(key);
}
std::vector<int> getSeeds()
{