| 139 | #define check(...) check_(__FILE__, __LINE__, __VA_ARGS__) |
| 140 | template<size_t size> |
| 141 | void check_(const char* file, int line, const char (&code)[size], const CheckOptions& options = make_default_obj()) { |
| 142 | check_(file, line, code, settings0, options.cpp); |
| 143 | } |
| 144 | |
| 145 | template<size_t size> |
| 146 | void check_(const char* file, int line, const char (&code)[size], const Settings& settings, bool cpp = true) { |
nothing calls this directly
no test coverage detected