Skip to content
Snippets Groups Projects
Commit 512be894 authored by Christopher Rob Jones's avatar Christopher Rob Jones
Browse files

RichCommonBase - Add missing std::forward for variadic template arguments

parent 373bb87e
No related branches found
No related tags found
1 merge request!3061Update RICH decoding for realistic cable maps from the pit
......@@ -31,6 +31,9 @@
// Utils
#include "RichUtils/RichSIMDTypes.h"
// STL
#include <utility>
// Forward declarations
class DeRich;
......@@ -43,7 +46,7 @@ namespace {
template <typename OS, typename Arg, typename... Args>
inline void rich_message( OS& os, Arg&& arg, Args&&... args ) {
os << arg;
rich_message( os, args... );
rich_message( os, std::forward<Args>( args )... );
}
} // namespace
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment