diff options
author | Lioncash <mathew1800@gmail.com> | 2020-11-23 10:17:18 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-11-23 10:17:20 -0500 |
commit | 874be0e3e167626904d227a4ae55e9b38612b3ee (patch) | |
tree | 8f9bb6d4c09764d10cdf776d2c4ec1ad877ab09c /src | |
parent | 92344da20ce4801543c1d3148e1f1b62ba162ffb (diff) |
svc: Remove unnecessary [[maybe_unused]] tag
The parameter is used in this function, so this suppression isn't
necessary.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/kernel/svc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index bafd1ced7..e3b770d66 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -681,7 +681,7 @@ static void Break32(Core::System& system, u32 reason, u32 info1, u32 info2) { } /// Used to output a message on a debug hardware unit - does nothing on a retail unit -static void OutputDebugString([[maybe_unused]] Core::System& system, VAddr address, u64 len) { +static void OutputDebugString(Core::System& system, VAddr address, u64 len) { if (len == 0) { return; } |