MCPcopy Create free account
hub / github.com/lief-project/LIEF / DataCodeEntry

Method DataCodeEntry

src/MachO/DataCodeEntry.cpp:27–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25namespace MachO {
26
27DataCodeEntry::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
33void DataCodeEntry::accept(Visitor& visitor) const {
34 visitor.visit(*this);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected