mirror of
				https://git.suyu.dev/suyu/suyu.git
				synced 2025-10-30 06:16:40 +08:00 
			
		
		
		
	Merge pull request #2341 from lioncash/compare
file_sys/nca_metadata: Remove unnecessary comparison operators for TitleType
This commit is contained in:
		
						commit
						23d3cd7604
					
				| @ -10,14 +10,6 @@ | ||||
| 
 | ||||
| namespace FileSys { | ||||
| 
 | ||||
| bool operator>=(TitleType lhs, TitleType rhs) { | ||||
|     return static_cast<std::size_t>(lhs) >= static_cast<std::size_t>(rhs); | ||||
| } | ||||
| 
 | ||||
| bool operator<=(TitleType lhs, TitleType rhs) { | ||||
|     return static_cast<std::size_t>(lhs) <= static_cast<std::size_t>(rhs); | ||||
| } | ||||
| 
 | ||||
| CNMT::CNMT(VirtualFile file) { | ||||
|     if (file->ReadObject(&header) != sizeof(CNMTHeader)) | ||||
|         return; | ||||
|  | ||||
| @ -29,9 +29,6 @@ enum class TitleType : u8 { | ||||
|     DeltaTitle = 0x83, | ||||
| }; | ||||
| 
 | ||||
| bool operator>=(TitleType lhs, TitleType rhs); | ||||
| bool operator<=(TitleType lhs, TitleType rhs); | ||||
| 
 | ||||
| enum class ContentRecordType : u8 { | ||||
|     Meta = 0, | ||||
|     Program = 1, | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user