forked from qt-creator/qt-creator
ClangCodeModel: Bump minimum clangd version
We need clangd >= 14 to get rid of the cumbersome compile_commands.json creation. Change-Id: I30c19a385e2d76e478985f3df64968d1cb3efe87 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
@@ -337,7 +337,7 @@ ClangdSettings::ClangdSettings()
|
||||
|
||||
bool ClangdSettings::useClangd() const
|
||||
{
|
||||
return m_data.useClangd && clangdVersion() >= QVersionNumber(13);
|
||||
return m_data.useClangd && clangdVersion() >= QVersionNumber(14);
|
||||
}
|
||||
|
||||
void ClangdSettings::setDefaultClangdPath(const FilePath &filePath)
|
||||
|
||||
Reference in New Issue
Block a user