qmake: Make some debug code actually compilable

Change-Id: Ia57b0d83ba3bf005d7d19e7958bb7131c7dc50b3
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
Joerg Bornemann 2021-10-18 15:27:05 +02:00
parent 89a4c8d40d
commit 3681369120

View File

@ -843,7 +843,7 @@ void VcprojGenerator::init()
for (auto it = extraCompilerSources.cbegin(), end = extraCompilerSources.cend(); it != end; ++it)
qDebug("Extracompilers for %s are (%s)", it.key().toLatin1().constData(), it.value().join(", ").toLatin1().constData());
for (auto it = extraCompilerOutputs.cbegin(), end = extraCompilerOutputs.cend(); it != end; ++it)
qDebug("Object mapping for %s is (%s)", it.key().toLatin1().constData(), it.value().join(", ").toLatin1().constData());
qDebug("Object mapping for %s is (%s)", qPrintable(it.key()), qPrintable(it.value()));
qDebug("");
#endif
}