forked from qt-creator/qt-creator
CppEditor: Fix compile on Windows
Amends c960f279e6.
Change-Id: I87249b5cdd984c00e44fc21d32534174edea73d2
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
committed by
David Schulz
parent
c960f279e6
commit
fb64cb12bc
@@ -8672,7 +8672,7 @@ private:
|
||||
}
|
||||
|
||||
QString inClassDeclaration = overview.prettyName(m_class->name()) + "(";
|
||||
QString constructorBody = members.empty() ? ") {}" : ") : ";
|
||||
QString constructorBody = members.empty() ? QString(") {}") : QString(") : ");
|
||||
for (auto &member : members) {
|
||||
bool customValueType;
|
||||
if (isValueType(member.symbol, &customValueType))
|
||||
|
||||
Reference in New Issue
Block a user