| 83 | : DiffBase<T>(textHeaderIn, jsonPathIn, value1, value2) {} |
| 84 | |
| 85 | virtual std::string value(std::size_t index, OutputFormat) const override { |
| 86 | return fmt::format("{}", DiffBase<T>::rawValue(index)); |
| 87 | } |
| 88 | }; |
| 89 | |
| 90 | struct DiffIdentifier : public DiffBase<std::array<uint8_t, sizeof(KTX_header2::identifier)>> { |
no test coverage detected