forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/4.14'
Change-Id: I2ae0eb18782224e48cd20d41907f9dfea6ee1771
This commit is contained in:
@@ -75,8 +75,8 @@ static bool isValidIncludePathToken(const ClangBackEnd::TokenInfoContainer &toke
|
||||
if (!token.extraInfo.includeDirectivePath)
|
||||
return false;
|
||||
const Utf8String &tokenName = token.extraInfo.token;
|
||||
return !tokenName.startsWith("include") && tokenName != "<" && tokenName != ">"
|
||||
&& tokenName != "#";
|
||||
return !tokenName.startsWith("include") && tokenName != Utf8String("<")
|
||||
&& tokenName != Utf8String(">") && tokenName != Utf8String("#");
|
||||
}
|
||||
|
||||
static int includePathStartIndex(const QVector<ClangBackEnd::TokenInfoContainer> &marks,
|
||||
|
||||
Reference in New Issue
Block a user