Selaa lähdekoodia

Merge pull request #7673 from german77/no_return

glsl: Remove unreachable return
Mai M 4 vuotta sitten
vanhempi
commit
7116a7d28b

+ 0 - 1
src/shader_recompiler/backend/glsl/var_alloc.cpp

@@ -131,7 +131,6 @@ std::string VarAlloc::AddDefine(IR::Inst& inst, GlslVarType type) {
     } else {
         return "";
     }
-    return Representation(inst.Definition<Id>());
 }
 
 std::string VarAlloc::Consume(const IR::Value& value) {

+ 1 - 1
src/video_core/shader_environment.cpp

@@ -381,7 +381,7 @@ void FileEnvironment::Deserialize(std::ifstream& file) {
     }
 }
 
-void FileEnvironment::Dump(u64 [[maybe_unused]] hash) {
+void FileEnvironment::Dump(u64 hash) {
     DumpImpl(hash, code.get(), read_highest, read_lowest, initial_offset, stage);
 }