Skip to content

Commit 3ce3d91

Browse files
committed
Fixed compiler warning
1 parent 48a6579 commit 3ce3d91

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/DotNext/Runtime/CompilerServices/AdvancedHelpers.Unsafe.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
using System.Diagnostics;
12
using System.Runtime.CompilerServices;
23

34
namespace DotNext.Runtime.CompilerServices;
@@ -82,5 +83,5 @@ file abstract class RawData
8283
{
8384
internal byte Data;
8485

85-
private RawData() => throw new NotImplementedException();
86+
private RawData() => throw new UnreachableException();
8687
}

0 commit comments

Comments
 (0)