Remove a suspect ungetc() call in VHDL parser
This ungetc() call don't look legitimate and actually leads to lots of warnings about ungetc() being called when another character was already backed up.
This commit is contained in:
parent
e469aa27e0
commit
c05f1bdd44
@ -190,7 +190,6 @@ static void tagNameList (const vhdlKind kind, int c)
|
|||||||
{
|
{
|
||||||
readIdentifier (TagName, c);
|
readIdentifier (TagName, c);
|
||||||
makeSimpleTag (TagName, VhdlKinds, kind);
|
makeSimpleTag (TagName, VhdlKinds, kind);
|
||||||
vUngetc (c);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user