Skip to content

Commit

Permalink
Fix whitespace, hopefull fixing CI compilation error which works fine…
Browse files Browse the repository at this point in the history
… locally???
  • Loading branch information
Felix Faber committed Jun 11, 2024
1 parent 61434c5 commit d0f9894
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/importproject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -865,11 +865,11 @@ bool ImportProject::importVcxproj(const std::string &filename, std::map<std::str

ImportProject::SharedItemsProject ImportProject::importVcxitems(const std::string& filename, const std::vector<std::string>& fileFilters, std::vector<SharedItemsProject> &cache)
{
auto isInCacheCheck = [filename](const auto& e) -> bool { return filename == e.pathToProjectFile; };
auto isInCacheCheck = [filename](const ImportProject::SharedItemsProject& e) -> bool { return filename == e.pathToProjectFile; };
auto iterator = std::find_if(cache.begin(), cache.end(), isInCacheCheck);
if (iterator != std::end(cache)) {
if (iterator != std::end(cache)) {
return *iterator;
}
}

SharedItemsProject result{};
result.pathToProjectFile = filename;
Expand Down

0 comments on commit d0f9894

Please sign in to comment.