| 1438 | } |
| 1439 | |
| 1440 | static std::string istream_to_string(std::istream &istr) |
| 1441 | { |
| 1442 | std::istreambuf_iterator<char> eos; |
| 1443 | return std::string(std::istreambuf_iterator<char>(istr), eos); |
| 1444 | } |
| 1445 | |
| 1446 | bool ImportProject::importCppcheckGuiProject(std::istream &istr, Settings &settings, Suppressions &supprs) |
| 1447 | { |
no outgoing calls
no test coverage detected