move QuickCollections to the PCEHawk core where it is used, since we don't expect to use it elsewhere, and one of it's advantages was speculating that being in the same assembly would give it good inlining, so being in a common library was negating this
This commit is contained in:
parent
dc656ccb23
commit
249259d7b3
|
@ -1,8 +1,6 @@
|
|||
#nullable disable
|
||||
using System;
|
||||
|
||||
using System;
|
||||
|
||||
namespace BizHawk.Common
|
||||
namespace BizHawk.Emulation.Cores.PCEngine
|
||||
{
|
||||
// If you're wondering what the point of this is: It's mostly to have .Clear() be fast.
|
||||
// only intended to be used with value types. If used on references you may get GC issues.
|
Loading…
Reference in New Issue