| 6 | #include "df/large_integer.h" |
| 7 | |
| 8 | Checker::Checker(color_ostream & out) : |
| 9 | out(out), |
| 10 | checked_count(0), |
| 11 | error_count(0), |
| 12 | maxerrors(~size_t(0)), |
| 13 | maxerrors_reported(false), |
| 14 | enums(false), |
| 15 | sizes(false), |
| 16 | unnamed(false), |
| 17 | failfast(false), |
| 18 | noprogress(!out.is_console()), |
| 19 | maybepointer(false) |
| 20 | { |
| 21 | Core::getInstance().p->getMemRanges(mapped); |
| 22 | } |
| 23 | |
| 24 | color_ostream & Checker::fail(int line, const QueueItem & item, const CheckedStructure & cs) |
| 25 | { |
nothing calls this directly
no test coverage detected