Merge pull request #12408 from lioncash/enums

General: Resolve -Wswitch warnings
This commit is contained in:
Tilka 2023-12-13 15:48:12 +00:00 committed by GitHub
commit 52a144745d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -93,6 +93,10 @@ std::optional<IPCReply> ShaDevice::IOCtlV(const IOCtlVRequest& request)
break;
return_code = ProcessShaCommand(command, request);
break;
case ShaIoctlv::ShaCommandUnknown:
break;
}
return IPCReply(return_code);