@brief Save this half-precision value in Binary */
| 44 | |
| 45 | /** @brief Save this half-precision value in Binary */ |
| 46 | void save(BinaryOutputArchive& archive, __half const& value) |
| 47 | { |
| 48 | archive.saveBinary(std::addressof(value), sizeof(value)); |
| 49 | } |
| 50 | |
| 51 | /** @brief Load this half-precision value from Binary */ |
| 52 | void load(BinaryInputArchive& archive, __half& value) |
no outgoing calls
no test coverage detected