From 874be0e3e167626904d227a4ae55e9b38612b3ee Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 23 Nov 2020 10:17:18 -0500 Subject: [PATCH] svc: Remove unnecessary [[maybe_unused]] tag The parameter is used in this function, so this suppression isn't necessary. --- src/core/hle/kernel/svc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index bafd1ced7f..e3b770d66f 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; }