diff --git a/src/video_core/shader/shader_ir.h b/src/video_core/shader/shader_ir.h index 02db2c087..5f3aef7ce 100644 --- a/src/video_core/shader/shader_ir.h +++ b/src/video_core/shader/shader_ir.h @@ -833,12 +833,10 @@ private: return StoreNode(OperationNode(code, std::move(meta), operands...)); } - template Node Operation(OperationCode code, std::vector&& operands) { return StoreNode(OperationNode(code, std::move(operands))); } - template Node Operation(OperationCode code, Meta&& meta, std::vector&& operands) { return StoreNode(OperationNode(code, std::move(meta), std::move(operands))); }