Skip to content

Commit ea83489

Browse files
committed
Fixed a build error with ArrayPoolBufferWriter<T>
1 parent a174c20 commit ea83489

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Microsoft.Toolkit.Uwp.UI/Helpers/Internals/ArrayPoolBufferWriter{T}.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Microsoft.Toolkit.Uwp.UI.Helpers.Internals
1818
/// enable the pattern-based <see cref="IDisposable"/> support. We aren't worried with consumers not
1919
/// using this type correctly since it's private and only accessible within the parent type.
2020
/// </remarks>
21-
internal ref struct ArrayPoolBufferWriter<T>
21+
internal struct ArrayPoolBufferWriter<T> : IDisposable
2222
{
2323
/// <summary>
2424
/// The default buffer size to use to expand empty arrays.

0 commit comments

Comments
 (0)