mirror of
https://github.com/yuzu-emu/sirit.git
synced 2024-11-22 11:15:38 +01:00
op: Fix implicit conversion from char* to bool warning
This commit is contained in:
parent
12f40a8032
commit
38e0d00cde
@ -82,7 +82,8 @@ void Op::Add(const Literal& literal) {
|
|||||||
case 5:
|
case 5:
|
||||||
return LiteralNumber::Create(std::get<5>(literal));
|
return LiteralNumber::Create(std::get<5>(literal));
|
||||||
default:
|
default:
|
||||||
assert(!"Invalid literal type");
|
// Invalid literal type
|
||||||
|
assert(0);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
}());
|
}());
|
||||||
|
Loading…
Reference in New Issue
Block a user