cpp_client_telemetry
cpp_client_telemetry copied to clipboard
ClangTidy issue in lib/system/Route.hpp
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.