| 1489 | #endif |
| 1490 | |
| 1491 | void CppCheck::executeAddons(const std::string& dumpFile, const FileWithDetails& file) |
| 1492 | { |
| 1493 | if (!dumpFile.empty()) { |
| 1494 | std::vector<std::string> f{dumpFile}; |
| 1495 | Timer::run("CppCheck::executeAddons", mTimerResults, [&]() { |
| 1496 | executeAddons(f, file.spath()); |
| 1497 | }); |
| 1498 | } |
| 1499 | } |
| 1500 | |
| 1501 | void CppCheck::executeAddons(const std::vector<std::string>& files, const std::string& file0) |
| 1502 | { |
nothing calls this directly
no test coverage detected