Skip to content

Commit

Permalink
Change visibilty to public
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyKuhne committed Jan 23, 2024
1 parent bfa71b1 commit 415614d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/thirtytwo/Support/RunLengthEncoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Windows.Support;
/// Format used is a byte for the count, followed by a byte for the value.
/// </para>
/// </remarks>
internal static class RunLengthEncoder
public static class RunLengthEncoder
{
/// <summary>
/// Get the encoded length, in bytes, of the given data.
Expand Down
2 changes: 1 addition & 1 deletion src/thirtytwo/Support/SpanWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Windows.Support;
/// <summary>
/// Fast stack based <see cref="Span{T}"/> writer.
/// </summary>
internal unsafe ref struct SpanWriter<T>(Span<T> span) where T : unmanaged, IEquatable<T>
public unsafe ref struct SpanWriter<T>(Span<T> span) where T : unmanaged, IEquatable<T>
{
private Span<T> _unwritten = span;
public Span<T> Span { get; } = span;
Expand Down

0 comments on commit 415614d

Please sign in to comment.