astyle formatting
This commit is contained in:
parent
dd178c3ad9
commit
2d08564c8a
|
@ -1,95 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<grammar xmlns="http://relaxng.org/ns/structure/1.0" ns="" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
||||
<start>
|
||||
<element name="results">
|
||||
<attribute name="version">
|
||||
<choice>
|
||||
<value type="string">2</value>
|
||||
</choice>
|
||||
</attribute>
|
||||
<element name="cppcheck">
|
||||
<attribute name="version">
|
||||
<data type="string">
|
||||
<param name="pattern">[1-9]\.[0-9]+.*</param>
|
||||
</data>
|
||||
</attribute>
|
||||
</element>
|
||||
<element name="errors">
|
||||
<zeroOrMore>
|
||||
<element name="error">
|
||||
<attribute name="id">
|
||||
<data type="NCName"/>
|
||||
</attribute>
|
||||
<optional>
|
||||
<attribute name="inconclusive">
|
||||
<data type="boolean"/>
|
||||
</attribute>
|
||||
</optional>
|
||||
<attribute name="msg">
|
||||
<data type="string"/>
|
||||
</attribute>
|
||||
<attribute name="severity">
|
||||
<choice>
|
||||
<value type="string">error</value>
|
||||
<value type="string">information</value>
|
||||
<value type="string">performance</value>
|
||||
<value type="string">portability</value>
|
||||
<value type="string">style</value>
|
||||
<value type="string">warning</value>
|
||||
</choice>
|
||||
</attribute>
|
||||
<attribute name="verbose">
|
||||
<data type="string"/>
|
||||
</attribute>
|
||||
<optional>
|
||||
<attribute name="file0">
|
||||
<data type="string"/>
|
||||
</attribute>
|
||||
</optional>
|
||||
<optional>
|
||||
<attribute name="cwe">
|
||||
<data type="integer">
|
||||
<param name="minExclusive">0</param>
|
||||
</data>
|
||||
</attribute>
|
||||
</optional>
|
||||
<optional>
|
||||
<attribute name="hash">
|
||||
<data type="integer">
|
||||
<param name="minExclusive">1</param>
|
||||
</data>
|
||||
</attribute>
|
||||
</optional>
|
||||
<zeroOrMore>
|
||||
<element name="location">
|
||||
<attribute name="file">
|
||||
<data type="string"/>
|
||||
</attribute>
|
||||
<attribute name="line">
|
||||
<data type="integer">
|
||||
<param name="minInclusive">0</param>
|
||||
</data>
|
||||
</attribute>
|
||||
<attribute name="column">
|
||||
<data type="integer">
|
||||
<param name="minInclusive">0</param>
|
||||
</data>
|
||||
</attribute>
|
||||
<optional>
|
||||
<attribute name="info">
|
||||
<data type="string"/>
|
||||
</attribute>
|
||||
</optional>
|
||||
</element>
|
||||
</zeroOrMore>
|
||||
<zeroOrMore>
|
||||
<element name="symbol">
|
||||
<data type="string"/>
|
||||
</element>
|
||||
</zeroOrMore>
|
||||
</element>
|
||||
</zeroOrMore>
|
||||
</element>
|
||||
</element>
|
||||
</start>
|
||||
</grammar>
|
|
@ -25,8 +25,7 @@ struct ForwardTraversal {
|
|||
Analyzer::Terminate terminate = Analyzer::Terminate::None;
|
||||
bool forked = false;
|
||||
|
||||
Progress Break(Analyzer::Terminate t = Analyzer::Terminate::None)
|
||||
{
|
||||
Progress Break(Analyzer::Terminate t = Analyzer::Terminate::None) {
|
||||
if ((!analyzeOnly || analyzeTerminate) && t != Analyzer::Terminate::None)
|
||||
terminate = t;
|
||||
return Progress::Break;
|
||||
|
|
|
@ -262,8 +262,7 @@ static void fillProgramMemoryFromAssignments(ProgramMemory& pm, const Token* tok
|
|||
continue;
|
||||
}
|
||||
tok2 = cond->astParent()->previous();
|
||||
}
|
||||
else if (conditionIsTrue(cond, state)) {
|
||||
} else if (conditionIsTrue(cond, state)) {
|
||||
if (inElse)
|
||||
tok2 = tok2->link()->tokAt(-2);
|
||||
++indentlevel;
|
||||
|
|
|
@ -4733,8 +4733,7 @@ struct SimpleConditionHandler : ConditionHandler {
|
|||
const Token* exprTok,
|
||||
const std::list<ValueFlow::Value>& values,
|
||||
TokenList* tokenlist,
|
||||
const Settings* settings) const OVERRIDE
|
||||
{
|
||||
const Settings* settings) const OVERRIDE {
|
||||
return valueFlowForward(start->next(), stop, exprTok, values, tokenlist, settings);
|
||||
}
|
||||
|
||||
|
@ -6523,8 +6522,7 @@ struct ContainerConditionHandler : ConditionHandler {
|
|||
const Token* exprTok,
|
||||
const std::list<ValueFlow::Value>& values,
|
||||
TokenList* tokenlist,
|
||||
const Settings*) const OVERRIDE
|
||||
{
|
||||
const Settings*) const OVERRIDE {
|
||||
// TODO: Forward multiple values
|
||||
if (values.empty())
|
||||
return {};
|
||||
|
|
Loading…
Reference in New Issue