| 101 | const char *pos; |
| 102 | |
| 103 | cursor() |
| 104 | : pos(nullptr) { } |
| 105 | cursor(const std::shared_ptr<section> sec, section_offset offset = 0) |
| 106 | : sec(sec), pos(sec->begin + offset) { } |
| 107 |
nothing calls this directly
no outgoing calls
no test coverage detected