We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d47cc10 commit d9abb3fCopy full SHA for d9abb3f
1 file changed
src/Base58Encoding.Tests/Base58ZeroAllocTests.cs
@@ -1,7 +1,9 @@
1
+using System.Diagnostics.CodeAnalysis;
2
using System.Text;
3
4
namespace Base58Encoding.Tests;
5
6
+[SuppressMessage("Performance", "CA2014:Do not use stackalloc in loops", Justification = "Intentional — loop bounds are small and known-safe in tests")]
7
public class Base58ZeroAllocTests
8
{
9
[Fact]
0 commit comments