mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-12 19:37:06 +00:00
* Replace LinkedList by IntrusiveList to avoid allocations on JIT * Fix wrong replacements
8 lines
190 B
C#
8 lines
190 B
C#
namespace ARMeilleure.IntermediateRepresentation
|
|
{
|
|
interface IIntrusiveListNode<T> where T : class
|
|
{
|
|
T ListPrevious { get; set; }
|
|
T ListNext { get; set; }
|
|
}
|
|
}
|