* 检查 elf 标识 * @return 成功返回 Expected ,失败返回错误 */
| 122 | * @return 成功返回 Expected<void>,失败返回错误 |
| 123 | */ |
| 124 | [[nodiscard]] auto CheckElfIdentity() const -> Expected<void> { |
| 125 | return CheckElfMagic().and_then([this]() { return CheckElfClass(); }); |
| 126 | } |
| 127 | |
| 128 | private: |
| 129 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected