forked from qt-creator/qt-creator
ToolChain: Change languageId for C++
"C++" might end up clashing with Orgad's work to make variable substitution more powerful. Use a pure-ASCII-string name (Cxx) instead. No conversion code since the impact can't be big so far, considering how new the code is. Change-Id: Iab1c91cd89d6c11dfaad80472a312e619abb6d97 Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
@@ -176,7 +176,7 @@ QString ToolChain::languageId(ToolChain::Language l)
|
||||
case Language::C:
|
||||
return QStringLiteral("C");
|
||||
case Language::Cxx:
|
||||
return QStringLiteral("C++");
|
||||
return QStringLiteral("Cxx");
|
||||
};
|
||||
return QString();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user