From 7963233702a07af04d7d93f2616699290e019ade Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Mon, 22 Apr 2024 14:18:41 +0100 Subject: [PATCH] add missing usings --- src/SharpCompress/NotNullExtensions.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/SharpCompress/NotNullExtensions.cs b/src/SharpCompress/NotNullExtensions.cs index d2ba87a3..88e95c41 100644 --- a/src/SharpCompress/NotNullExtensions.cs +++ b/src/SharpCompress/NotNullExtensions.cs @@ -1,6 +1,8 @@ using System; using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; using System.Linq; +using System.Runtime.CompilerServices; namespace SharpCompress;