Skip to content

Commit

Permalink
clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
ElBread3 committed Oct 9, 2024
1 parent afb7d41 commit cbe5eb2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/common/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,8 @@ void load(const std::filesystem::path& path) {
data.as_table().erase("installDir");
}

const auto install_dir_array = toml::find_or<std::vector<std::string>>(gui, "installDirs", {});
const auto install_dir_array =
toml::find_or<std::vector<std::string>>(gui, "installDirs", {});
for (const auto& dir : install_dir_array) {
settings_install_dirs.emplace_back(std::filesystem::path{dir});
}
Expand Down

0 comments on commit cbe5eb2

Please sign in to comment.