Tokenizer: Upon createLinks error, report error and bailout
This commit is contained in:
parent
b10f0aabd6
commit
586cbd5839
|
@ -2412,7 +2412,12 @@ bool Tokenizer::tokenize(std::istream &code,
|
||||||
// TODO: Remove this "createLinks". Make sure that the testcase
|
// TODO: Remove this "createLinks". Make sure that the testcase
|
||||||
// TestSimplifyTokens::simplifyTypedefFunction8
|
// TestSimplifyTokens::simplifyTypedefFunction8
|
||||||
// doesn't fail.
|
// doesn't fail.
|
||||||
createLinks();
|
if (!createLinks())
|
||||||
|
{
|
||||||
|
// Source has syntax errors, can't proceed
|
||||||
|
cppcheckError(0);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// enum..
|
// enum..
|
||||||
simplifyEnum();
|
simplifyEnum();
|
||||||
|
|
Loading…
Reference in New Issue