| 52 | #include <QVariant> |
| 53 | |
| 54 | static QString unquote(QString s) { |
| 55 | if (s.startsWith("\"")) |
| 56 | s = s.mid(1, s.size() - 2); |
| 57 | return s; |
| 58 | } |
| 59 | |
| 60 | // NOLINTNEXTLINE(performance-unnecessary-value-param) - used as callback so we need to preserve the signature |
| 61 | int CheckThread::executeCommand(std::string exe, std::vector<std::string> args, std::string redirect, std::string &output) // cppcheck-suppress passedByValueCallback |
no test coverage detected