Skip to content

Commit cea664e

Browse files
committed
surpressed standards check complaint
1 parent d9ff0a1 commit cea664e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

com.unity.netcode.gameobjects/Runtime/NetworkVariable/Serialization/ResizableBitVector.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
using System;
22
using Unity.Collections;
33

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+
411
namespace Unity.Netcode
512
{
613
/// <summary>

0 commit comments

Comments
 (0)