mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-22 19:25:42 +00:00
Fix bunch of warnings from code analysis (#321)
Warnings produced complain that re-throw did not properly capture stack trace. Given that these rethrow just to please compiler, I think it is better fix that.
This commit is contained in:
parent
4710fa1d06
commit
50b87a49d4
|
@ -246,7 +246,7 @@ namespace GtkSharp.Generation {
|
||||||
sw.WriteLine ("\t\t\t\tGLib.ExceptionManager.RaiseUnhandledException (e, " + (fatal ? "true" : "false") + ");");
|
sw.WriteLine ("\t\t\t\tGLib.ExceptionManager.RaiseUnhandledException (e, " + (fatal ? "true" : "false") + ");");
|
||||||
if (fatal) {
|
if (fatal) {
|
||||||
sw.WriteLine ("\t\t\t\t// NOTREACHED: Above call does not return.");
|
sw.WriteLine ("\t\t\t\t// NOTREACHED: Above call does not return.");
|
||||||
sw.WriteLine ("\t\t\t\tthrow e;");
|
sw.WriteLine ("\t\t\t\tthrow;");
|
||||||
} else if (retval.MarshalType == "bool") {
|
} else if (retval.MarshalType == "bool") {
|
||||||
sw.WriteLine ("\t\t\t\treturn false;");
|
sw.WriteLine ("\t\t\t\treturn false;");
|
||||||
}
|
}
|
||||||
|
|
|
@ -117,7 +117,7 @@ namespace GtkSharp.Generation {
|
||||||
sw.WriteLine ("\t\t\t\tGLib.ExceptionManager.RaiseUnhandledException (e, " + (fatal ? "true" : "false") + ");");
|
sw.WriteLine ("\t\t\t\tGLib.ExceptionManager.RaiseUnhandledException (e, " + (fatal ? "true" : "false") + ");");
|
||||||
if (fatal) {
|
if (fatal) {
|
||||||
sw.WriteLine ("\t\t\t\t// NOTREACHED: above call does not return.");
|
sw.WriteLine ("\t\t\t\t// NOTREACHED: above call does not return.");
|
||||||
sw.WriteLine ("\t\t\t\tthrow e;");
|
sw.WriteLine ("\t\t\t\tthrow;");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (call.HasDisposeParam) {
|
if (call.HasDisposeParam) {
|
||||||
|
|
Loading…
Reference in a new issue