diff options
Diffstat (limited to 'src/video_core')
| -rw-r--r-- | src/video_core/shader/shader_ir.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/shader_ir.h b/src/video_core/shader/shader_ir.h index 8ad2a366f..8a1985526 100644 --- a/src/video_core/shader/shader_ir.h +++ b/src/video_core/shader/shader_ir.h | |||
| @@ -492,7 +492,7 @@ private: | |||
| 492 | /// Commentary, can be dropped | 492 | /// Commentary, can be dropped |
| 493 | class CommentNode final { | 493 | class CommentNode final { |
| 494 | public: | 494 | public: |
| 495 | explicit CommentNode(const std::string& text) : text{text} {} | 495 | explicit CommentNode(std::string text) : text{std::move(text)} {} |
| 496 | 496 | ||
| 497 | const std::string& GetText() const { | 497 | const std::string& GetText() const { |
| 498 | return text; | 498 | return text; |
| @@ -763,4 +763,4 @@ private: | |||
| 763 | Tegra::Shader::Header header; | 763 | Tegra::Shader::Header header; |
| 764 | }; | 764 | }; |
| 765 | 765 | ||
| 766 | } // namespace VideoCommon::Shader \ No newline at end of file | 766 | } // namespace VideoCommon::Shader |