Skip to content

Commit 29d874c

Browse files
committed
chore: enable nullable for SummaryTableExtensions.cs
1 parent 596f4d9 commit 29d874c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/BenchmarkDotNet/Reports/SummaryTableExtensions.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@
66
using BenchmarkDotNet.Extensions;
77
using BenchmarkDotNet.Loggers;
88

9+
#nullable enable
10+
911
namespace BenchmarkDotNet.Reports
1012
{
1113
public static class SummaryTableExtensions
1214
{
1315
[ThreadStatic]
14-
private static StringBuilder sharedBuffer;
16+
private static StringBuilder? sharedBuffer;
1517

1618
public static void PrintCommonColumns(this SummaryTable table, ILogger logger)
1719
{

0 commit comments

Comments
 (0)