1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-27 06:26:32 -05:00

Warnings: Add UNREACHABLE macros to switches that contemplate all possible values.

This commit is contained in:
Subv
2017-08-19 12:04:40 -05:00
parent 145a7293a3
commit 65f19b51c4
3 changed files with 7 additions and 2 deletions

View File

@@ -90,6 +90,8 @@ std::u16string Path::AsU16Str() const {
LOG_ERROR(Service_FS, "LowPathType cannot be converted to u16string!");
return {};
}
UNREACHABLE();
}
std::vector<u8> Path::AsBinary() const {