minor fix
This commit is contained in:
parent
dcc7011d0c
commit
9f2ab0479e
|
@ -3249,7 +3249,6 @@ void CppParser::handleStructs(bool isTypedef)
|
|||
|
||||
// normal class/struct decl
|
||||
} else {
|
||||
bool templateSpecialization=false;
|
||||
PStatement firstSynonym;
|
||||
// Add class/struct name BEFORE opening brace
|
||||
if (mTokenizer[mIndex]->text.front() != '{') {
|
||||
|
|
|
@ -909,7 +909,7 @@ void CodeCompletionPopup::getCompletionListForTypeKeywordComplex(const QString &
|
|||
}
|
||||
}
|
||||
|
||||
void CodeCompletionPopup::getCompletionListForNamespaces(const QString &preWord,
|
||||
void CodeCompletionPopup::getCompletionListForNamespaces(const QString &/*preWord*/,
|
||||
const QString& fileName,
|
||||
int line)
|
||||
{
|
||||
|
|
|
@ -334,9 +334,8 @@ const PHighlighterAttribute &ASMHighlighter::getTokenAttribute() const
|
|||
case TokenId::Unknown:
|
||||
return mIdentifierAttribute;
|
||||
default:
|
||||
break;
|
||||
return mIdentifierAttribute;
|
||||
}
|
||||
return PHighlighterAttribute();
|
||||
}
|
||||
|
||||
int ASMHighlighter::getTokenPos()
|
||||
|
|
Loading…
Reference in New Issue