| 56 | unsigned addr_size; |
| 57 | |
| 58 | section(section_type type, const void *begin, |
| 59 | section_length length, |
| 60 | byte_order ord, format fmt = format::unknown, |
| 61 | unsigned addr_size = 0) |
| 62 | : type(type), begin((char*)begin), end((char*)begin + length), |
| 63 | fmt(fmt), ord(ord), addr_size(addr_size) { } |
| 64 | |
| 65 | section(const section &o) = default; |
| 66 |
nothing calls this directly
no outgoing calls
no test coverage detected