parse a cppcheck dump file
(filename)
| 1445 | |
| 1446 | |
| 1447 | def parsedump(filename): |
| 1448 | """ |
| 1449 | parse a cppcheck dump file |
| 1450 | """ |
| 1451 | return CppcheckData(filename) |
| 1452 | |
| 1453 | |
| 1454 | def astIsFloat(token): |
nothing calls this directly
no test coverage detected