summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-10-15 18:21:56 -0400
committerLioncash <mathew1800@gmail.com>2019-10-15 18:21:59 -0400
commit67658dd6e84ca0ee04cdfd761aa1a7f5ac96cd42 (patch)
tree36714096d646ef16aca479e7fe9bcf3317b90b5d /src
parent9760795bfb854733c4696fa9e7e04f788ea489a7 (diff)
shader/node: std::move Meta instance within OperationNode constructor
Allows usages of the constructor to avoid an unnecessary copy.
Diffstat (limited to 'src')
-rw-r--r--src/video_core/shader/node.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h
index 338bab17c..447fb5c1d 100644
--- a/src/video_core/shader/node.h
+++ b/src/video_core/shader/node.h
@@ -410,7 +410,7 @@ public:
explicit OperationNode(OperationCode code) : OperationNode(code, Meta{}) {}
explicit OperationNode(OperationCode code, Meta meta)
- : OperationNode(code, meta, std::vector<Node>{}) {}
+ : OperationNode(code, std::move(meta), std::vector<Node>{}) {}
explicit OperationNode(OperationCode code, std::vector<Node> operands)
: OperationNode(code, Meta{}, std::move(operands)) {}