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:
adelikat 2020-06-20 14:54:21 -05:00
parent dc656ccb23
commit 249259d7b3
1 changed files with 109 additions and 111 deletions

View File

@ -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.