mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
util: remove spurious error in parent offset calc
This commit is contained in:
parent
b2b1129cc0
commit
00b093ec62
1 changed files with 0 additions and 4 deletions
|
@ -83,10 +83,6 @@ namespace ams::util {
|
|||
const auto start = std::addressof(cur_union.data.members[0]);
|
||||
const auto next = GetNextAddress(start, target);
|
||||
|
||||
if constexpr (Offset > 0x10) {
|
||||
__builtin_unreachable();
|
||||
}
|
||||
|
||||
if (next != target) {
|
||||
if constexpr (Offset < sizeof(MemberType) - 1) {
|
||||
return OffsetOfImpl(member, cur_union.next_union);
|
||||
|
|
Loading…
Reference in a new issue