|
|
@ -492,7 +492,7 @@ private: |
|
|
/// Commentary, can be dropped |
|
|
/// Commentary, can be dropped |
|
|
class CommentNode final { |
|
|
class CommentNode final { |
|
|
public: |
|
|
public: |
|
|
explicit CommentNode(const std::string& text) : text{text} {} |
|
|
|
|
|
|
|
|
explicit CommentNode(std::string text) : text{std::move(text)} {} |
|
|
|
|
|
|
|
|
const std::string& GetText() const { |
|
|
const std::string& GetText() const { |
|
|
return text; |
|
|
return text; |
|
|
@ -763,4 +763,4 @@ private: |
|
|
Tegra::Shader::Header header; |
|
|
Tegra::Shader::Header header; |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
} // namespace VideoCommon::Shader |
|
|
|
|
|
|
|
|
} // namespace VideoCommon::Shader |