aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-01-25 16:16:20 -0500
committerGitHub <noreply@github.com>2022-01-25 16:16:20 -0500
commit84cc22b21b7490083e730eaef8c9d6f6309ae97d (patch)
tree10d1b5c4067faa83cef4c84537077becd681100d
parentc93dd459972208813c251ad35f4f8132698dedd6 (diff)
parentb46ec4efea992acf6a9074dc8f916cbea7eae27c (diff)
Merge pull request #7777 from lioncash/nodisc
shader_recompiler: Remove unnecessary [[nodiscard]] specifier
-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 cd535f20d6..eac83da9dc 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 {
[[nodiscard]] IR::Program MergeDualVertexPrograms(IR::Program& vertex_a, IR::Program& vertex_b,
Environment& env_vertex_b);
-[[nodiscard]] void ConvertLegacyToGeneric(IR::Program& program,
- const Shader::RuntimeInfo& runtime_info);
+void ConvertLegacyToGeneric(IR::Program& program, const RuntimeInfo& runtime_info);
} // namespace Shader::Maxwell