We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9ff0a1 commit cea664eCopy full SHA for cea664e
1 file changed
com.unity.netcode.gameobjects/Runtime/NetworkVariable/Serialization/ResizableBitVector.cs
@@ -1,6 +1,13 @@
1
using System;
2
using Unity.Collections;
3
4
+// The following gets complained on by standards check that is
5
+// likely not analyzing extension method usage deeply enough and thinks the using directive is unused.
6
+// The directive is required for GetUnsafePtr() to be available.
7
+#pragma warning disable IDE0005
8
+using Unity.Collections.LowLevel.Unsafe;
9
+#pragma warning restore IDE0005
10
+
11
namespace Unity.Netcode
12
{
13
/// <summary>
0 commit comments