core: Silence warnings when compiling without asserts
This commit is contained in:
parent
2a6e6306d8
commit
4f13e270c8
|
@ -143,6 +143,7 @@ u64 GetSignatureTypeDataSize(SignatureType type) {
|
||||||
return 0x3C;
|
return 0x3C;
|
||||||
}
|
}
|
||||||
UNREACHABLE();
|
UNREACHABLE();
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
u64 GetSignatureTypePaddingSize(SignatureType type) {
|
u64 GetSignatureTypePaddingSize(SignatureType type) {
|
||||||
|
@ -157,6 +158,7 @@ u64 GetSignatureTypePaddingSize(SignatureType type) {
|
||||||
return 0x40;
|
return 0x40;
|
||||||
}
|
}
|
||||||
UNREACHABLE();
|
UNREACHABLE();
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
SignatureType Ticket::GetSignatureType() const {
|
SignatureType Ticket::GetSignatureType() const {
|
||||||
|
@ -169,8 +171,7 @@ SignatureType Ticket::GetSignatureType() const {
|
||||||
if (const auto* ticket = std::get_if<ECDSATicket>(&data)) {
|
if (const auto* ticket = std::get_if<ECDSATicket>(&data)) {
|
||||||
return ticket->sig_type;
|
return ticket->sig_type;
|
||||||
}
|
}
|
||||||
|
throw std::bad_variant_access{};
|
||||||
UNREACHABLE();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
TicketData& Ticket::GetData() {
|
TicketData& Ticket::GetData() {
|
||||||
|
@ -183,8 +184,7 @@ TicketData& Ticket::GetData() {
|
||||||
if (auto* ticket = std::get_if<ECDSATicket>(&data)) {
|
if (auto* ticket = std::get_if<ECDSATicket>(&data)) {
|
||||||
return ticket->data;
|
return ticket->data;
|
||||||
}
|
}
|
||||||
|
throw std::bad_variant_access{};
|
||||||
UNREACHABLE();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const TicketData& Ticket::GetData() const {
|
const TicketData& Ticket::GetData() const {
|
||||||
|
@ -197,8 +197,7 @@ const TicketData& Ticket::GetData() const {
|
||||||
if (const auto* ticket = std::get_if<ECDSATicket>(&data)) {
|
if (const auto* ticket = std::get_if<ECDSATicket>(&data)) {
|
||||||
return ticket->data;
|
return ticket->data;
|
||||||
}
|
}
|
||||||
|
throw std::bad_variant_access{};
|
||||||
UNREACHABLE();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
u64 Ticket::GetSize() const {
|
u64 Ticket::GetSize() const {
|
||||||
|
|
|
@ -51,8 +51,8 @@ std::pair<std::size_t, std::size_t> SearchBucketEntry(u64 offset, const BlockTyp
|
||||||
low = mid + 1;
|
low = mid + 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
UNREACHABLE_MSG("Offset could not be found in BKTR block.");
|
UNREACHABLE_MSG("Offset could not be found in BKTR block.");
|
||||||
|
return {0, 0};
|
||||||
}
|
}
|
||||||
} // Anonymous namespace
|
} // Anonymous namespace
|
||||||
|
|
||||||
|
|
|
@ -105,7 +105,8 @@ ContentRecordType GetCRTypeFromNCAType(NCAContentType type) {
|
||||||
// TODO(DarkLordZach): Peek at NCA contents to differentiate Manual and Legal.
|
// TODO(DarkLordZach): Peek at NCA contents to differentiate Manual and Legal.
|
||||||
return ContentRecordType::HtmlDocument;
|
return ContentRecordType::HtmlDocument;
|
||||||
default:
|
default:
|
||||||
UNREACHABLE_MSG("Invalid NCAContentType={:02X}", static_cast<u8>(type));
|
UNREACHABLE_MSG("Invalid NCAContentType={:02X}", type);
|
||||||
|
return ContentRecordType{};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -96,6 +96,7 @@ u64 AddressSpaceInfo::GetAddressSpaceStart(std::size_t width, Type type) {
|
||||||
return AddressSpaceInfos[AddressSpaceIndices39Bit[index]].address;
|
return AddressSpaceInfos[AddressSpaceIndices39Bit[index]].address;
|
||||||
}
|
}
|
||||||
UNREACHABLE();
|
UNREACHABLE();
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::size_t AddressSpaceInfo::GetAddressSpaceSize(std::size_t width, Type type) {
|
std::size_t AddressSpaceInfo::GetAddressSpaceSize(std::size_t width, Type type) {
|
||||||
|
@ -112,6 +113,7 @@ std::size_t AddressSpaceInfo::GetAddressSpaceSize(std::size_t width, Type type)
|
||||||
return AddressSpaceInfos[AddressSpaceIndices39Bit[index]].size;
|
return AddressSpaceInfos[AddressSpaceIndices39Bit[index]].size;
|
||||||
}
|
}
|
||||||
UNREACHABLE();
|
UNREACHABLE();
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Kernel::Memory
|
} // namespace Kernel::Memory
|
||||||
|
|
|
@ -64,6 +64,7 @@ Network::Type Translate(Type type) {
|
||||||
return Network::Type::DGRAM;
|
return Network::Type::DGRAM;
|
||||||
default:
|
default:
|
||||||
UNIMPLEMENTED_MSG("Unimplemented type={}", type);
|
UNIMPLEMENTED_MSG("Unimplemented type={}", type);
|
||||||
|
return Network::Type{};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in New Issue