mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 05:47:56 -05:00
video_core: Use variable template variants of type_traits interfaces where applicable
This commit is contained in:
@ -477,8 +477,7 @@ union Instruction {
|
||||
u64 value;
|
||||
};
|
||||
static_assert(sizeof(Instruction) == 0x8, "Incorrect structure size");
|
||||
static_assert(std::is_standard_layout<Instruction>::value,
|
||||
"Structure does not have standard layout");
|
||||
static_assert(std::is_standard_layout_v<Instruction>, "Instruction is not standard layout");
|
||||
|
||||
class OpCode {
|
||||
public:
|
||||
|
Reference in New Issue
Block a user