SonarQube warnings.
--HG-- branch : release
This commit is contained in:
parent
32e3a6340c
commit
1a2def2bca
|
@ -574,11 +574,8 @@ bool QmuParserTokenReader::IsInfixOpTok ( token_type &a_Tok )
|
||||||
auto it = m_pInfixOprtDef->rbegin();
|
auto it = m_pInfixOprtDef->rbegin();
|
||||||
for ( ; it != m_pInfixOprtDef->rend(); ++it )
|
for ( ; it != m_pInfixOprtDef->rend(); ++it )
|
||||||
{
|
{
|
||||||
if ( sTok.indexOf ( it->first ) != 0 )
|
if ( sTok.indexOf ( it->first ) == 0 )
|
||||||
{
|
{
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
a_Tok.Set ( it->second, it->first );
|
a_Tok.Set ( it->second, it->first );
|
||||||
m_iPos += static_cast<int>(it->first.length());
|
m_iPos += static_cast<int>(it->first.length());
|
||||||
|
|
||||||
|
@ -590,19 +587,9 @@ bool QmuParserTokenReader::IsInfixOpTok ( token_type &a_Tok )
|
||||||
m_iSynFlags = noPOSTOP | noINFIXOP | noOPT | noBC | noSTR | noASSIGN;
|
m_iSynFlags = noPOSTOP | noINFIXOP | noOPT | noBC | noSTR | noASSIGN;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
/*
|
|
||||||
a_Tok.Set(item->second, sTok);
|
|
||||||
m_iPos = (int)iEnd;
|
|
||||||
|
|
||||||
if (m_iSynFlags & noINFIXOP)
|
|
||||||
Error(ecUNEXPECTED_OPERATOR, m_iPos, a_Tok.GetAsString());
|
|
||||||
|
|
||||||
m_iSynFlags = noPOSTOP | noINFIXOP | noOPT | noBC | noSTR | noASSIGN;
|
|
||||||
return true;
|
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
@ -756,17 +743,15 @@ bool QmuParserTokenReader::IsPostOpTok ( token_type &a_Tok )
|
||||||
auto it = m_pPostOprtDef->rbegin();
|
auto it = m_pPostOprtDef->rbegin();
|
||||||
for ( ; it != m_pPostOprtDef->rend(); ++it )
|
for ( ; it != m_pPostOprtDef->rend(); ++it )
|
||||||
{
|
{
|
||||||
if ( sTok.indexOf ( it->first ) != 0 )
|
if ( sTok.indexOf ( it->first ) == 0 )
|
||||||
{
|
{
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
a_Tok.Set ( it->second, sTok );
|
a_Tok.Set ( it->second, sTok );
|
||||||
m_iPos += it->first.length();
|
m_iPos += it->first.length();
|
||||||
|
|
||||||
m_iSynFlags = noVAL | noVAR | noFUN | noBO | noPOSTOP | noSTR | noASSIGN;
|
m_iSynFlags = noVAL | noVAR | noFUN | noBO | noPOSTOP | noSTR | noASSIGN;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user