| 25 | namespace MachO { |
| 26 | |
| 27 | DataCodeEntry::DataCodeEntry(const details::data_in_code_entry& entry) : |
| 28 | offset_{entry.offset}, |
| 29 | length_{entry.length}, |
| 30 | type_{static_cast<TYPES>(entry.kind)} |
| 31 | {} |
| 32 | |
| 33 | void DataCodeEntry::accept(Visitor& visitor) const { |
| 34 | visitor.visit(*this); |
nothing calls this directly
no outgoing calls
no test coverage detected