mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Merge pull request #1003 from lioncash/var
video_core: Use variable template variants of type_traits interfaces where applicable
This commit is contained in:
		
						commit
						b8b9f41b6b
					
				@ -30,8 +30,7 @@ union CommandHeader {
 | 
			
		||||
 | 
			
		||||
    BitField<29, 3, SubmissionMode> mode;
 | 
			
		||||
};
 | 
			
		||||
static_assert(std::is_standard_layout<CommandHeader>::value == true,
 | 
			
		||||
              "CommandHeader does not use standard layout");
 | 
			
		||||
static_assert(std::is_standard_layout_v<CommandHeader>, "CommandHeader is not standard layout");
 | 
			
		||||
static_assert(sizeof(CommandHeader) == sizeof(u32), "CommandHeader has incorrect size!");
 | 
			
		||||
 | 
			
		||||
} // namespace Tegra
 | 
			
		||||
 | 
			
		||||
@ -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:
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user