forked from qt-creator/qt-creator
Clang: Provide highlighting for identifier under cursor
Change-Id: I80ffe23cbcc84ab7323124581d9dd6afbe974fd0 Reviewed-by: Marco Bubke <marco.bubke@qt.io>
This commit is contained in:
@@ -56,7 +56,7 @@ protected:
|
||||
void TearDown() override;
|
||||
|
||||
bool waitUntilAllJobsFinished(int timeOutInMs = 10000) const;
|
||||
bool waitUntilJobChainFinished(int timeOutInMs = 10000) const;
|
||||
bool waitUntilJobChainFinished(int timeOutInMs = 10000);
|
||||
|
||||
protected:
|
||||
ClangBackEnd::ProjectParts projects;
|
||||
@@ -134,7 +134,7 @@ bool Jobs::waitUntilAllJobsFinished(int timeOutInMs) const
|
||||
return ProcessEventUtilities::processEventsUntilTrue(noJobsRunningAnymore, timeOutInMs);
|
||||
}
|
||||
|
||||
bool Jobs::waitUntilJobChainFinished(int timeOutInMs) const
|
||||
bool Jobs::waitUntilJobChainFinished(int timeOutInMs)
|
||||
{
|
||||
const auto noJobsRunningAnymore = [this]() {
|
||||
return jobs.runningJobs().isEmpty() && jobs.queue().isEmpty();
|
||||
|
||||
Reference in New Issue
Block a user