diff options
| author | 2020-04-24 09:29:07 +0200 | |
|---|---|---|
| committer | 2020-04-24 09:33:04 +0200 | |
| commit | e717a1df20b45dc9bd4b77bbbc3d54b1561189d3 (patch) | |
| tree | 6163449db6bf315f86afff9f1d5f1dac1fad48c6 /src | |
| parent | Fix -Werror=conversion error. (diff) | |
| download | yuzu-e717a1df20b45dc9bd4b77bbbc3d54b1561189d3.tar.gz yuzu-e717a1df20b45dc9bd4b77bbbc3d54b1561189d3.tar.xz yuzu-e717a1df20b45dc9bd4b77bbbc3d54b1561189d3.zip | |
Fix -Wdeprecated-copy warning.
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/engines/shader_bytecode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index 7231597d4..73d98fe8c 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h | |||
| @@ -655,6 +655,7 @@ union Instruction { | |||
| 655 | } | 655 | } |
| 656 | 656 | ||
| 657 | constexpr Instruction(u64 value) : value{value} {} | 657 | constexpr Instruction(u64 value) : value{value} {} |
| 658 | constexpr Instruction(const Instruction& instr) : value(instr.value) {} | ||
| 658 | 659 | ||
| 659 | BitField<0, 8, Register> gpr0; | 660 | BitField<0, 8, Register> gpr0; |
| 660 | BitField<8, 8, Register> gpr8; | 661 | BitField<8, 8, Register> gpr8; |