[Scummvm-git-logs] scummvm master -> 9e3376c8d0e7798d948f051e9314d5925fa312de
bonki
bonki at users.noreply.github.com
Fri Mar 23 18:43:24 CET 2018
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
9e3376c8d0 JANITORIAL: Silence GCC warning
Commit: 9e3376c8d0e7798d948f051e9314d5925fa312de
https://github.com/scummvm/scummvm/commit/9e3376c8d0e7798d948f051e9314d5925fa312de
Author: Adrian Frühwirth (bonki at users.noreply.github.com)
Date: 2018-03-23T18:42:37+01:00
Commit Message:
JANITORIAL: Silence GCC warning
Changed paths:
engines/sci/graphics/celobj32.h
diff --git a/engines/sci/graphics/celobj32.h b/engines/sci/graphics/celobj32.h
index 02b2859..37e9d39 100644
--- a/engines/sci/graphics/celobj32.h
+++ b/engines/sci/graphics/celobj32.h
@@ -132,6 +132,9 @@ struct CelInfo32 {
default:
assert(!"Should never happen");
}
+ // This code should not be reached but the compiler expects to see a legal
+ // return from a non-void function.
+ return Common::String("here be dragons");
}
};
More information about the Scummvm-git-logs
mailing list