mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
fix: remove invalid std::forward
Related-To: NEO-9038 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
1f1af5bb36
commit
110164a52a
@@ -42,9 +42,9 @@ void flushDebugStream(StreamT stream, Args &&...args) {
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
void printDebugString(bool showDebugLogs, Args &&...args) {
|
||||
void printDebugString(bool showDebugLogs, Args... args) {
|
||||
if (showDebugLogs) {
|
||||
IoFunctions::fprintf(std::forward<Args>(args)...);
|
||||
IoFunctions::fprintf(args...);
|
||||
flushDebugStream(args...);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user