| 112 | |
| 113 | template<size_t size> |
| 114 | static std::map<std::string, std::string> getcode(const Settings& settings, ErrorLogger& errorlogger, const char (&code)[size], const std::string &filename = "file.c") |
| 115 | { |
| 116 | return getcode(settings, errorlogger, code, size-1, {}, filename, nullptr); |
| 117 | } |
| 118 | |
| 119 | static std::map<std::string, std::string> getcode(const Settings& settings, ErrorLogger& errorlogger, const char* code, std::size_t size, std::set<std::string> cfgs, const std::string &filename, SuppressionList *inlineSuppression) |
| 120 | { |
no test coverage detected