Merge pull request #2322 from ReinUsesLisp/wswitch

video_core: Silent -Wswitch warnings
This commit is contained in:
bunnei 2019-04-28 22:24:58 -04:00 committed by GitHub
commit c52233ec8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 106 additions and 77 deletions

View file

@ -243,9 +243,10 @@ public:
return "10_10_10_2";
case Size::Size_11_11_10:
return "11_11_10";
default:
UNREACHABLE();
return {};
}
UNREACHABLE();
return {};
}
std::string TypeString() const {