forked from qt-creator/qt-creator
Utils: Convert to SmallStringView for comparison
Change-Id: I38d9716225b81091e8e75b26c9c2258a2aefa987 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
@@ -43,7 +43,7 @@ void PchManagerClient::alive()
|
||||
void PchManagerClient::precompiledHeadersUpdated(ClangBackEnd::PrecompiledHeadersUpdatedMessage &&message)
|
||||
{
|
||||
for (const ClangBackEnd::ProjectPartPch &projectPartPch : message.projectPartPchs())
|
||||
precompiledHeaderUpdated(projectPartPch.id(), projectPartPch.path());
|
||||
precompiledHeaderUpdated(QString(projectPartPch.id()), QString(projectPartPch.path()));
|
||||
}
|
||||
|
||||
void PchManagerClient::precompiledHeaderRemoved(const QString &projectPartId)
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <clangpchmanager_global.h>
|
||||
#include "clangpchmanager_global.h"
|
||||
|
||||
#include <filecontainerv2.h>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user