Suppress CS0169 CS0649 warns from HID structs (#1222)

Also fix typo in a pragma restore in Logger
This commit is contained in:
mageven 2020-05-10 19:32:41 +05:30 committed by GitHub
parent be98a7a649
commit 492bb6ee5f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 11 additions and 1 deletions

View file

@ -2,6 +2,7 @@ using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Hid
{
#pragma warning disable CS0169
struct Array2<T> where T : unmanaged
{
T e0, e1;
@ -50,4 +51,5 @@ namespace Ryujinx.HLE.HOS.Services.Hid
public ref T this[int index] => ref MemoryMarshal.CreateSpan(ref e0, 17)[index];
public int Length => 17;
}
#pragma warning restore CS0169
}