mirror of
https://github.com/yuzu-emu/sirit.git
synced 2024-11-22 22:45:37 +01:00
Merge pull request #10 from lioncash/order
op: Amend constructor initializer list order
This commit is contained in:
commit
151d9e816d
@ -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 New Issue
Block a user