| 2984 | #define checkNoMemset(...) checkNoMemset_(__FILE__, __LINE__, __VA_ARGS__) |
| 2985 | template<size_t size> |
| 2986 | void checkNoMemset_(const char* file, int line, const char (&code)[size]) { |
| 2987 | checkNoMemset_(file, line, code, settings4); |
| 2988 | } |
| 2989 | |
| 2990 | template<size_t size> |
| 2991 | void checkNoMemset_(const char* file, int line, const char (&code)[size], const Settings &settings) { |
nothing calls this directly
no test coverage detected