summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/maxwell
diff options
context:
space:
mode:
authorGravatar Morph2022-01-25 16:16:20 -0500
committerGravatar GitHub2022-01-25 16:16:20 -0500
commit84cc22b21b7490083e730eaef8c9d6f6309ae97d (patch)
tree10d1b5c4067faa83cef4c84537077becd681100d /src/shader_recompiler/frontend/maxwell
parentMerge pull request #7779 from lioncash/gpu-iface (diff)
parentshader_recompiler: Remove unnecessary [[nodiscard]] (diff)
downloadyuzu-84cc22b21b7490083e730eaef8c9d6f6309ae97d.tar.gz
yuzu-84cc22b21b7490083e730eaef8c9d6f6309ae97d.tar.xz
yuzu-84cc22b21b7490083e730eaef8c9d6f6309ae97d.zip
Merge pull request #7777 from lioncash/nodisc
shader_recompiler: Remove unnecessary [[nodiscard]] specifier
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate_program.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate_program.h b/src/shader_recompiler/frontend/maxwell/translate_program.h
index cd535f20d..eac83da9d 100644
--- a/src/shader_recompiler/frontend/maxwell/translate_program.h
+++ b/src/shader_recompiler/frontend/maxwell/translate_program.h
@@ -21,7 +21,6 @@ namespace Shader::Maxwell {
21[[nodiscard]] IR::Program MergeDualVertexPrograms(IR::Program& vertex_a, IR::Program& vertex_b, 21[[nodiscard]] IR::Program MergeDualVertexPrograms(IR::Program& vertex_a, IR::Program& vertex_b,
22 Environment& env_vertex_b); 22 Environment& env_vertex_b);
23 23
24[[nodiscard]] void ConvertLegacyToGeneric(IR::Program& program, 24void ConvertLegacyToGeneric(IR::Program& program, const RuntimeInfo& runtime_info);
25 const Shader::RuntimeInfo& runtime_info);
26 25
27} // namespace Shader::Maxwell 26} // namespace Shader::Maxwell