| 45 | #define check(...) check_(__FILE__, __LINE__, __VA_ARGS__) |
| 46 | template<size_t size> |
| 47 | void check_(const char* file, int line, const char (&code)[size], bool cpp = true) { |
| 48 | // Tokenize.. |
| 49 | SimpleTokenizer tokenizer(settings, *this, cpp); |
| 50 | ASSERT_LOC(tokenizer.tokenize(code), file, line); |
| 51 | |
| 52 | Check64BitPortabilityImpl check64BitPortability(&tokenizer, settings, *this); |
| 53 | check64BitPortability.pointerassignment(); |
| 54 | } |
| 55 | |
| 56 | void assignment() { |
| 57 | // #8631 |
nothing calls this directly
no test coverage detected