Uh oh!
There was an error while loading. Please reload this page.
Fix method signature for memmove and memset in SpanHelpers.ByteMemOps - #123006
Conversation
Tagging subscribers to this area: @dotnet/area-system-memory |
There was a problem hiding this comment.
Pull request overview
This PR fixes modifier ordering issues in two method declarations that were causing build errors when building the Mono runtime. The changes ensure compliance with the C# modifier ordering rules specified in .editorconfig.
- Reorders modifiers from
private static unsafe externtoprivate static extern unsafefor two internal methods - Resolves IDE0036 compiler errors that were blocking Mono builds
Uh oh!
There was an error while loading. Please reload this page.
jkotas
commented
Jan 14, 2026
I am wondering why this was not caught by CI. Do you happen to know? It is not the first time something like this happened, but I was not able to figure out how it sneaked through. |
I was building runtime packs using the following command: I see that the ios packs were built on the PR. I will check if there is any difference when DotNetBuildAllRuntimePacks is passed. |
Description
This PR fixes modifiers order encountered when building mono runtime.
Introduced in #122791