mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-24 12:35:47 +00:00
file_sys/nca_metadata: Remove unnecessary comparison operators for TitleType
enum class elements from the same enum can already be compared against one another without the need for explicitly defined comparison operators.
This commit is contained in:
parent
6e99d5146f
commit
0359cba0f3
2 changed files with 0 additions and 11 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue