Common basic data types
| 25 | |
| 26 | // Common basic data types |
| 27 | struct ElfTypes |
| 28 | { |
| 29 | typedef std::uint16_t Half; |
| 30 | typedef std::uint32_t Word; |
| 31 | typedef std::int32_t Sword; |
| 32 | }; |
| 33 | |
| 34 | struct Elf32 : public ElfTypes |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected