| 528 | } |
| 529 | |
| 530 | static std::string getDefinesFlags(const std::string &semicolonSeparatedString) |
| 531 | { |
| 532 | std::string flags; |
| 533 | for (const std::string &d: split(semicolonSeparatedString, ";")) |
| 534 | flags += "-D" + d + " "; |
| 535 | return flags; |
| 536 | } |
| 537 | |
| 538 | CppCheck::CppCheck(const Settings& settings, |
| 539 | Suppressions& supprs, |
no test coverage detected