| 13955 | ////////// |
| 13956 | |
| 13957 | static constexpr CharType get_cbor_float_prefix(float /*unused*/) |
| 13958 | { |
| 13959 | return to_char_type(0xFA); // Single-Precision Float |
| 13960 | } |
| 13961 | |
| 13962 | static constexpr CharType get_cbor_float_prefix(double /*unused*/) |
| 13963 | { |
nothing calls this directly
no outgoing calls
no test coverage detected