We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a810cb8 commit 5ab9604Copy full SHA for 5ab9604
Tools/c-analyzer/c_analyzer/datafiles.py
@@ -104,7 +104,12 @@ def _iter_ignored(infile, relroot):
104
for v in varidinfo)
105
if reason in bogus:
106
reason = None
107
- varid = _info.DeclID.from_row(varidinfo)
+ try:
108
+ varid = _info.DeclID.from_row(varidinfo)
109
+ except BaseException as e:
110
+ e.add_note(f"Error occurred when processing row {varidinfo} in {infile}.")
111
+ e.add_note(f"Could it be that you added a row which is not tab-delimited?")
112
+ raise e
113
varid = varid.fix_filename(relroot, formatted=False, fixroot=False)
114
yield varid, reason
115
0 commit comments