mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-07 06:58:15 +01:00
Suppress MSVC warning C4702: unreachable code
This commit is contained in:
parent
b1953c1cd4
commit
605a43d23e
2 changed files with 12 additions and 11 deletions
|
|
@ -261,9 +261,10 @@ struct PairedLowerIndexer {
|
|||
return std::make_tuple(a[0], b[0]);
|
||||
}
|
||||
return std::make_tuple(0, 0);
|
||||
} else {
|
||||
UNREACHABLE();
|
||||
return {};
|
||||
}
|
||||
UNREACHABLE();
|
||||
return {};
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue