mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-20 16:37:07 +00:00
Suppress CA1416 warnings, correct argument kind in IFileSystem
This commit is contained in:
parent
ef6f43825d
commit
620666909f
4 changed files with 7 additions and 1 deletions
|
|
@ -1,6 +1,7 @@
|
|||
using Ryujinx.Common.Logging;
|
||||
using System;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.Versioning;
|
||||
using static Ryujinx.Memory.MemoryManagerUnixHelper;
|
||||
|
|
@ -10,6 +11,7 @@ namespace Ryujinx.Memory
|
|||
[SupportedOSPlatform("linux")]
|
||||
[SupportedOSPlatform("macos")]
|
||||
[SupportedOSPlatform("android")]
|
||||
[SuppressMessage("Interoperability", "CA1416:Validate platform compatibility")]
|
||||
static class MemoryManagementUnix
|
||||
{
|
||||
private static readonly ConcurrentDictionary<IntPtr, ulong> _allocations = new();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue