Skip to content

Commit 001f441

Browse files
committed
ClangTidy issue in lib/system/Route.hpp #1296
1 parent 5116b27 commit 001f441

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/system/Route.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ namespace MAT_NS_BEGIN {
102102
void operator()(TRealArgs&& ... args) const
103103
{
104104
for (IRoutePassThrough<TArgs...>* target : m_passthroughs) {
105-
if (!(*target)(std::forward<TRealArgs>(args) ...)) {
105+
if (!(*target)(args ...)) {
106106
return;
107107
}
108108
}

0 commit comments

Comments
 (0)