comments
This commit is contained in:
parent
6e2e624bce
commit
942c48474c
|
@ -524,11 +524,13 @@ void CheckCaseWithoutBreak()
|
||||||
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
// Check for case without break
|
// Check for unsigned divisions
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
void CheckUnsignedDivision()
|
void CheckUnsignedDivision()
|
||||||
{
|
{
|
||||||
|
// TODO: Check that the scope is the same
|
||||||
|
|
||||||
const char *pattern_declvar[] = { "unsigned", "int", "", NULL };
|
const char *pattern_declvar[] = { "unsigned", "int", "", NULL };
|
||||||
TOKEN *declvar = findtoken(tokens, pattern_declvar);
|
TOKEN *declvar = findtoken(tokens, pattern_declvar);
|
||||||
while ( declvar )
|
while ( declvar )
|
||||||
|
|
Loading…
Reference in New Issue