Skip to content

Commit

Permalink
ClangTidy issue in lib/system/Route.hpp #1296
Browse files Browse the repository at this point in the history
  • Loading branch information
HIROSN committed Aug 22, 2024
1 parent 5116b27 commit 001f441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/system/Route.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ namespace MAT_NS_BEGIN {
void operator()(TRealArgs&& ... args) const
{
for (IRoutePassThrough<TArgs...>* target : m_passthroughs) {
if (!(*target)(std::forward<TRealArgs>(args) ...)) {
if (!(*target)(args ...)) {
return;
}
}
Expand Down

0 comments on commit 001f441

Please sign in to comment.