From 1acd6b34e9669ba0f4d2441328224663156ff1f2 Mon Sep 17 00:00:00 2001 From: Markus Wick Date: Fri, 24 Apr 2020 09:29:07 +0200 Subject: [PATCH] Fix -Wdeprecated-copy warning. --- src/video_core/engines/shader_bytecode.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index 7231597d4e..73d98fe8c3 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h @@ -655,6 +655,7 @@ union Instruction { } constexpr Instruction(u64 value) : value{value} {} + constexpr Instruction(const Instruction& instr) : value(instr.value) {} BitField<0, 8, Register> gpr0; BitField<8, 8, Register> gpr8;