diff options
author | Isaac Marovitz <42140194+IsaacMarovitz@users.noreply.github.com> | 2022-12-10 15:21:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-10 21:21:13 +0100 |
commit | 851d81d24ab437bbe552a085cdd3caad6f4a1867 (patch) | |
tree | f86c541e454757fafdd67a6fcca9ec5234ecfdff /Ryujinx.Graphics.Vulkan/DisposableBufferView.cs | |
parent | 459c4caebac0bc16c04467d9dcd2ef7a9fc0bd92 (diff) |
Fix Redundant Qualifer Warnings (#4091)1.1.459
* Fix Redundant Qualifer Warnings
* Remove unnecessary using
Diffstat (limited to 'Ryujinx.Graphics.Vulkan/DisposableBufferView.cs')
-rw-r--r-- | Ryujinx.Graphics.Vulkan/DisposableBufferView.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Vulkan/DisposableBufferView.cs b/Ryujinx.Graphics.Vulkan/DisposableBufferView.cs index 28ddd7dd..e81ca412 100644 --- a/Ryujinx.Graphics.Vulkan/DisposableBufferView.cs +++ b/Ryujinx.Graphics.Vulkan/DisposableBufferView.cs @@ -3,7 +3,7 @@ using System; namespace Ryujinx.Graphics.Vulkan { - readonly struct DisposableBufferView : System.IDisposable + readonly struct DisposableBufferView : IDisposable { private readonly Vk _api; private readonly Device _device; |