gl_shader_decompiler: Use std::holds_alternative within GenerateTexture()

This only ever queries if the type exists within the variant, but
doesn't actually do anything with the return value. We can just use
std::holds_alternative for this use case.
master
Lioncash 2019-10-15 18:25:45 +07:00
parent 67658dd6e8
commit d1d7ce74d2
1 changed files with 1 additions and 1 deletions

@ -1148,7 +1148,7 @@ private:
for (const auto& variant : extras) {
if (const auto argument = std::get_if<TextureArgument>(&variant)) {
expr += GenerateTextureArgument(*argument);
} else if (std::get_if<TextureAoffi>(&variant)) {
} else if (std::holds_alternative<TextureAoffi>(variant)) {
expr += GenerateTextureAoffi(meta->aoffi);
} else {
UNREACHABLE();