| 226 | } |
| 227 | |
| 228 | std::optional<Key> Key::FromPlatformCode(uint32_t p) |
| 229 | { |
| 230 | if (auto pDesc = Registry::Get().LookupPlatformCode(p)) |
| 231 | { |
| 232 | return Key{ pDesc->code }; |
| 233 | } |
| 234 | return {}; |
| 235 | } |
| 236 | } |
nothing calls this directly
no test coverage detected