diff options
Diffstat (limited to 'Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs')
-rw-r--r-- | Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs b/Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs deleted file mode 100644 index 2f03d13a..00000000 --- a/Ryujinx.HLE/Exceptions/InvalidStructLayoutException.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System; -using System.Runtime.CompilerServices; - -namespace Ryujinx.HLE.Exceptions -{ - public class InvalidStructLayoutException<T> : Exception - { - static readonly Type _structType = typeof(T); - - public InvalidStructLayoutException(string message) : base(message) { } - - public InvalidStructLayoutException(int expectedSize) - : base($"Type {_structType.Name} has the wrong size. Expected: {expectedSize} bytes, got: {Unsafe.SizeOf<T>()} bytes") { } - } -}
\ No newline at end of file |