Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
Qt Creator 3.5.1, Qt Creator 3.6.0-rc1
-
Windows 7
-
7bb2d833f1e4f9429757aad62298f7df95cd8b69
Description
When using Q_FUNC_INFO with qDebug() then it will be seen as invalid syntax in Qt Creator in some circumstances. The following:
void foo()
{
qDebug() << Q_FUNC_INFO " it was function description";
}
will be be seen as invalid. Whereas this:
void bar()
{
qDebug() << "It is function description: " Q_FUNC_INFO;
}
is fine.