diff options
| author | 2019-10-15 21:07:25 -0300 | |
|---|---|---|
| committer | 2019-10-15 21:07:25 -0300 | |
| commit | 14f3cebcd43689915e0e46d6077032947eedc6a5 (patch) | |
| tree | 2c7e1e927dd8a611665419a23250c9307447b65d /src/video_core/shader/node.h | |
| parent | Merge pull request #2972 from lioncash/system (diff) | |
| parent | gl_shader_decompiler: Make ExprDecompiler's GetResult() a const member function (diff) | |
| download | yuzu-14f3cebcd43689915e0e46d6077032947eedc6a5.tar.gz yuzu-14f3cebcd43689915e0e46d6077032947eedc6a5.tar.xz yuzu-14f3cebcd43689915e0e46d6077032947eedc6a5.zip | |
Merge pull request #2981 from lioncash/copy
gl_shader_decompiler: Minor cleanup-related changes
Diffstat (limited to 'src/video_core/shader/node.h')
| -rw-r--r-- | src/video_core/shader/node.h | 2 |
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: | |||
| 410 | explicit OperationNode(OperationCode code) : OperationNode(code, Meta{}) {} | 410 | explicit OperationNode(OperationCode code) : OperationNode(code, Meta{}) {} |
| 411 | 411 | ||
| 412 | explicit OperationNode(OperationCode code, Meta meta) | 412 | explicit OperationNode(OperationCode code, Meta meta) |
| 413 | : OperationNode(code, meta, std::vector<Node>{}) {} | 413 | : OperationNode(code, std::move(meta), std::vector<Node>{}) {} |
| 414 | 414 | ||
| 415 | explicit OperationNode(OperationCode code, std::vector<Node> operands) | 415 | explicit OperationNode(OperationCode code, std::vector<Node> operands) |
| 416 | : OperationNode(code, Meta{}, std::move(operands)) {} | 416 | : OperationNode(code, Meta{}, std::move(operands)) {} |