diff options
Diffstat (limited to '')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/opcodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.h b/src/shader_recompiler/frontend/ir/opcodes.h index 56b001902..9ab108292 100644 --- a/src/shader_recompiler/frontend/ir/opcodes.h +++ b/src/shader_recompiler/frontend/ir/opcodes.h | |||
| @@ -67,7 +67,8 @@ constexpr OpcodeMeta META_TABLE[]{ | |||
| 67 | }; | 67 | }; |
| 68 | constexpr size_t CalculateNumArgsOf(Opcode op) { | 68 | constexpr size_t CalculateNumArgsOf(Opcode op) { |
| 69 | const auto& arg_types{META_TABLE[static_cast<size_t>(op)].arg_types}; | 69 | const auto& arg_types{META_TABLE[static_cast<size_t>(op)].arg_types}; |
| 70 | return std::distance(arg_types.begin(), std::ranges::find(arg_types, Type::Void)); | 70 | return static_cast<size_t>( |
| 71 | std::distance(arg_types.begin(), std::ranges::find(arg_types, Type::Void))); | ||
| 71 | } | 72 | } |
| 72 | 73 | ||
| 73 | constexpr u8 NUM_ARGS[]{ | 74 | constexpr u8 NUM_ARGS[]{ |