cpp_client_telemetry icon indicating copy to clipboard operation
cpp_client_telemetry copied to clipboard

ClangTidy issue in lib/system/Route.hpp

Open HIROSN opened this issue 1 year ago • 0 comments

In RouteSource::operator(), r-value's in 'args' are used in a later loop iteration after they were forwarded/moved to a target in the first loop iteration. Proposed fix is to remove usage of std::forward and pass 'args' only as l-value's to targets.

HIROSN avatar Aug 22 '24 03:08 HIROSN