We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e3e5ee commit e342afeCopy full SHA for e342afe
MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs
@@ -105,7 +105,7 @@ private void Push<T>(T b)
105
public void WriteIntArray(int[] i, bool known = false) => PushArray(i, known);
106
public void WriteLongArray(long[] l, bool known = false) => PushArray(l, known);
107
108
- public void PushArray<T>(T[] t, bool knownSize = false)
+ private void PushArray<T>(T[] t, bool knownSize = false)
109
{
110
if (!knownSize) Push((uint)t.Length);
111
bool signed = IsSigned(t.GetType().GetElementType());
0 commit comments