Skip to content

Commit

Permalink
Fix unused parameter compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Foereaper committed Jun 2, 2024
1 parent d520b47 commit f973649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ElunaLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ extern "C" {
}

#ifdef TRINITY
void ElunaUpdateListener::handleFileAction(efsw::WatchID, std::string const& dir, std::string const& filename, efsw::Action, std::string oldFilename)
void ElunaUpdateListener::handleFileAction(efsw::WatchID /*watchid*/, std::string const& dir, std::string const& filename, efsw::Action /*action*/, std::string /*oldFilename*/)
{
auto const path = fs::absolute(filename, dir);
if (!path.has_extension())
Expand Down

0 comments on commit f973649

Please sign in to comment.