Utils: do not escape '\' in assert backtrace output on windows

Change-Id: Ib01a29f572b79f3cc323ab69b70a63408aa46af8
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
David Schulz
2022-08-29 08:31:22 +02:00
parent 55c627efef
commit 49c29fedba

View File

@@ -98,7 +98,7 @@ void dumpBacktrace(int maxdepth)
.arg(QString::fromLatin1(lineInfo.FileName),
QString::number(lineInfo.LineNumber)));
}
qDebug() << out;
qDebug().noquote() << out;
if (++depth == maxdepth)
break;
}