Skip to content

Commit

Permalink
🚨 Fix MacOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
JulesFouchy committed Feb 5, 2025
1 parent 0e5da05 commit 0434a5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Version/VersionManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ static auto get_all_locally_installed_versions(std::vector<Version>& versions) -
{
auto const version_name = VersionName::from(name);
if (version_name.has_value())
versions.emplace_back(*version_name, InstallationStatus::Installed);
versions.emplace_back(Version{*version_name, InstallationStatus::Installed});
}
}
}
Expand Down

0 comments on commit 0434a5c

Please sign in to comment.