Browse Source

Fixed potential compilation error on MSYS2

pipelines/357160723
eidheim 4 years ago
parent
commit
d65eb9eaf2
  1. 2
      src/filesystem.cpp

2
src/filesystem.cpp

@ -285,7 +285,7 @@ boost::filesystem::path filesystem::get_executable(const boost::filesystem::path
return executable_name; return executable_name;
} }
auto &executable_name_str = executable_name.string(); auto executable_name_str = executable_name.string();
for(auto &folder : get_executable_search_paths()) { for(auto &folder : get_executable_search_paths()) {
boost::filesystem::path latest_executable; boost::filesystem::path latest_executable;
std::string latest_version; std::string latest_version;

Loading…
Cancel
Save