| 1079 | }; |
| 1080 | |
| 1081 | inline const char* to_string(yaml_version_type t) noexcept { |
| 1082 | switch (t) { |
| 1083 | case yaml_version_type::VERSION_1_1: |
| 1084 | return "VERSION_1_1"; |
| 1085 | case yaml_version_type::VERSION_1_2: |
| 1086 | return "VERSION_1_2"; |
| 1087 | default: // LCOV_EXCL_LINE |
| 1088 | detail::unreachable(); // LCOV_EXCL_LINE |
| 1089 | } |
| 1090 | } |
| 1091 | |
| 1092 | FK_YAML_NAMESPACE_END |
| 1093 |
no test coverage detected