We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a7e7b7 commit ceef6b9Copy full SHA for ceef6b9
src/NetMQ.Tests/BufferPoolTests.cs
@@ -10,7 +10,10 @@ public abstract class BufferPoolTests
10
{
11
protected int maxBufferSize = 2;
12
protected long maxBufferPoolSize = 100L;
13
+ // Silence the non-nullable warning.
14
+#pragma warning disable 8618
15
protected IBufferPool pool;
16
+#pragma warning restore 8618
17
18
[Theory]
19
[InlineData(500)]
0 commit comments