From 8c39628929c3df14b58b66233230b40607b94478 Mon Sep 17 00:00:00 2001 From: Anton Firszov Date: Thu, 25 Nov 2021 15:18:09 +0100 Subject: [PATCH] make MemoryAllocatorSettings a struct --- src/ImageSharp/Memory/Allocators/MemoryAllocatorSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ImageSharp/Memory/Allocators/MemoryAllocatorSettings.cs b/src/ImageSharp/Memory/Allocators/MemoryAllocatorSettings.cs index 274e1739cb..01ab46c2a1 100644 --- a/src/ImageSharp/Memory/Allocators/MemoryAllocatorSettings.cs +++ b/src/ImageSharp/Memory/Allocators/MemoryAllocatorSettings.cs @@ -6,7 +6,7 @@ namespace SixLabors.ImageSharp.Memory /// /// Defines options for creating the default . /// - public class MemoryAllocatorSettings + public struct MemoryAllocatorSettings { private int? maximumPoolSizeMegabytes;