Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Michael MIGLIORE <[email protected]>
  • Loading branch information
mwestphal and Meakk authored Dec 29, 2024
1 parent de617d8 commit 72374bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/src/engine.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ std::vector<engine::readerInformation> engine::getReadersInfo()
}

//----------------------------------------------------------------------------
engine& engine::setCachePath(const std::filesystem::path& cachePath)
engine& engine::setCachePath(const fs::path& cachePath)
{
this->Internals->Window->SetCachePath(cachePath);
return *this;
Expand Down
2 changes: 1 addition & 1 deletion library/testing/TestSDKEngine.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ int TestSDKEngine(int argc, char* argv[])

// coverage for getPluginList
std::ignore = f3d::engine::getPluginsList(std::string(argv[1]) + "configs");
std::ignore = f3d::engine::getPluginsList("innexistent");
std::ignore = f3d::engine::getPluginsList("inexistent");

return EXIT_SUCCESS;
}

0 comments on commit 72374bf

Please sign in to comment.