[Runtime] Move some of the changes back to int. - #7529
Conversation
Some of the fixes done for the warnings have breaking changes. Move back to int and ensure that we do not have any compilation errors (we are using -Werror). Fixes: dotnet#7509
| *(NSObject **) arg = obj; | ||
| } else { | ||
| exception_gchandle = xamarin_get_exception_for_parameter (8030, 0, "Unable to marshal the out/ref parameter", sel, method, p, i, false); | ||
| exception_gchandle = xamarin_get_exception_for_parameter (8030, 0, "Unable to marshal the out/ref parameter", sel, method, p, (int) i, false); |
There was a problem hiding this comment.
would not this be simpler (less changes) if int i was used ?
There was a problem hiding this comment.
Surprisingly, no.
|
Build failure Test results1 tests failed, 87 tests passed.Failed tests
|
|
https://github.com/xamarin/maccore/issues/2072 is still happening, so this is not complete. My first guess would be that it's the changes in trampolines-arm64.m that is causing https://github.com/xamarin/maccore/issues/2072. |
|
Build failure Test results1 tests failed, 87 tests passed.Failed tests
|
|
@rolfbjarne these results do look more promising. |
|
@mandel-macaque so that didn't fix https://github.com/xamarin/maccore/issues/2072 😒 |
|
Build failure Test results3 tests failed, 85 tests passed.Failed tests
|
…t to step on the canary." This reverts commit a40c128.
|
Build failure Test results1 tests failed, 87 tests passed.Failed tests
|
|
@monojenkins backport to d16-5 |
|
@spouliot backporting to d16-5 failed, the patch results in conflicts: Please backport manually! |
Some of the fixes done for the warnings have breaking changes. Move back to int and ensure that we do not have any compilation errors (we are using -Werror). Fixes: dotnet#7509
Some of the fixes done for the warnings have breaking changes. Move back
to int and ensure that we do not have any compilation errors (we are
using -Werror).
Fixes: #7509