Skip to content

Commit

Permalink
Fixed a build error with ArrayPoolBufferWriter<T>
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio0694 committed Dec 20, 2021
1 parent a174c20 commit ea83489
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Microsoft.Toolkit.Uwp.UI.Helpers.Internals
/// enable the pattern-based <see cref="IDisposable"/> support. We aren't worried with consumers not
/// using this type correctly since it's private and only accessible within the parent type.
/// </remarks>
internal ref struct ArrayPoolBufferWriter<T>
internal struct ArrayPoolBufferWriter<T> : IDisposable
{
/// <summary>
/// The default buffer size to use to expand empty arrays.
Expand Down

0 comments on commit ea83489

Please sign in to comment.