Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit ac35f24

Browse files
committed
Merged PR 175176: Update method signature for fake IPv6AddressHelper Parse()
Update method signature for fake IPv6AddressHelper Parse()
2 parents 12ffe61 + 6fdf8be commit ac35f24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/System.Net.Primitives/tests/UnitTests/Fakes/IPv6AddressHelper.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ internal unsafe static (int longestSequenceStart, int longestSequenceLength) Fin
1212
ushort[] numbers, int fromInclusive, int toExclusive) => (-1, -1);
1313
internal unsafe static bool ShouldHaveIpv4Embedded(ushort[] numbers) => false;
1414
internal unsafe static bool IsValidStrict(char* name, int start, ref int end) => false;
15-
internal static unsafe bool Parse(ReadOnlySpan<char> ipSpan, ushort* numbers, int start, ref string scopeId) => false;
15+
internal static unsafe bool Parse(ReadOnlySpan<char> ipSpan, Span<ushort> numbers, int start, ref string scopeId) => false;
1616
}
1717
}

0 commit comments

Comments
 (0)