Skip to content

Commit

Permalink
fixup engine
Browse files Browse the repository at this point in the history
  • Loading branch information
mwestphal committed Dec 25, 2024
1 parent 4be3ceb commit 9b6c0e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/src/engine.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ std::vector<std::string> engine::getPluginsList(const fs::path& pluginPath)
std::vector<std::string> pluginNames;
for (auto& entry : fs::directory_iterator(pluginPath))
{
fs::path fullPath = entry.path();
const fs::path& fullPath = entry.path();
if (fullPath.extension() == ext)
{
try
Expand Down

0 comments on commit 9b6c0e0

Please sign in to comment.