| 40 | |
| 41 | # Auxiliary class |
| 42 | class DataStruct: |
| 43 | def __init__(self, file, linenr, string, column=0): |
| 44 | self.file = file |
| 45 | self.linenr = linenr |
| 46 | self.str = string |
| 47 | self.column = column |
| 48 | |
| 49 | def reportNamingError(location,message,errorId='namingConvention',severity='style',extra='',column=None): |
| 50 | cppcheckdata.reportError(location,severity,message,'namingng',errorId,extra,columnOverride=column) |
no outgoing calls
no test coverage detected