From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 8 Apr 2023 01:22:00 +0200 Subject: Move solution and projects to src --- Ryujinx.Common/Pools/ThreadStaticArray.cs | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 Ryujinx.Common/Pools/ThreadStaticArray.cs (limited to 'Ryujinx.Common/Pools/ThreadStaticArray.cs') diff --git a/Ryujinx.Common/Pools/ThreadStaticArray.cs b/Ryujinx.Common/Pools/ThreadStaticArray.cs deleted file mode 100644 index 21434a02..00000000 --- a/Ryujinx.Common/Pools/ThreadStaticArray.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; - -namespace Ryujinx.Common.Pools -{ - public static class ThreadStaticArray - { - [ThreadStatic] - private static T[] _array; - - public static ref T[] Get() - { - if (_array == null) - { - _array = new T[1]; - } - - return ref _array; - } - } -} -- cgit v1.2.3