| 41 | #define check(...) check_(__FILE__, __LINE__, __VA_ARGS__) |
| 42 | template<size_t size> |
| 43 | void check_(const char* file, int line, const char (&code)[size], const CheckOptions& options = make_default_obj()) { |
| 44 | const Settings settings1 = options.inconclusive ? settings_i : settings; |
| 45 | |
| 46 | check_(file, line, code, settings1); |
| 47 | } |
| 48 | |
| 49 | template<size_t size> |
| 50 | void check_(const char* file, int line, const char (&code)[size], const Settings& settings1) { |
nothing calls this directly
no test coverage detected