mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-10 05:28:56 +02:00
fix shit
This commit is contained in:
parent
7cceae444a
commit
7f695b5366
2 changed files with 2 additions and 2 deletions
|
|
@ -40,7 +40,7 @@ static ArmDecodeTable<V> GetArmDecodeTable() noexcept {
|
|||
ArmDecodeTable<V> table{};
|
||||
for (size_t i = 0; i < table.size(); ++i) {
|
||||
// PLEASE HEAP ELLIDE
|
||||
for (auto const e : std::vector<ArmMatcher<V>>{
|
||||
for (auto const& e : std::vector<ArmMatcher<V>>{
|
||||
#define INST(fn, name, bitstring) DYNARMIC_DECODER_GET_MATCHER(ArmMatcher, fn, name, Decoder::detail::StringToArray<32>(bitstring)),
|
||||
#include "./arm.inc"
|
||||
#undef INST
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ inline DecodeTable<V> GetDecodeTable() {
|
|||
DecodeTable<V> table{};
|
||||
for (size_t i = 0; i < table.size(); ++i) {
|
||||
// PLEASE HEAP ELLIDE
|
||||
for (auto const e : std::vector<Matcher<V>>{
|
||||
for (auto const& e : std::vector<Matcher<V>>{
|
||||
#define INST(fn, name, bitstring) DYNARMIC_DECODER_GET_MATCHER(Matcher, fn, name, Decoder::detail::StringToArray<32>(bitstring)),
|
||||
#include "./a64.inc"
|
||||
#undef INST
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue