mirror of
https://github.com/yuzu-emu/sirit
synced 2024-11-22 22:53:55 +00:00
Merge pull request #10 from lioncash/order
op: Amend constructor initializer list order
This commit is contained in:
commit
151d9e816d
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@
|
||||||
namespace Sirit {
|
namespace Sirit {
|
||||||
|
|
||||||
Op::Op(spv::Op opcode, std::optional<u32> id, Id result_type)
|
Op::Op(spv::Op opcode, std::optional<u32> id, Id result_type)
|
||||||
: opcode(opcode), id(id), result_type(result_type) {
|
: opcode(opcode), result_type(result_type), id(id) {
|
||||||
operand_type = OperandType::Op;
|
operand_type = OperandType::Op;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue