| 23 | namespace MachO { |
| 24 | |
| 25 | FunctionVariantFixups::FunctionVariantFixups(const details::linkedit_data_command& cmd) : |
| 26 | LoadCommand::LoadCommand{LoadCommand::TYPE(cmd.cmd), cmd.cmdsize}, |
| 27 | data_offset_{cmd.dataoff}, |
| 28 | data_size_{cmd.datasize} |
| 29 | {} |
| 30 | |
| 31 | std::ostream& FunctionVariantFixups::print(std::ostream& os) const { |
| 32 | LoadCommand::print(os) << '\n'; |