summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2020-11-23 10:17:18 -0500
committerGravatar Lioncash2020-11-23 10:17:20 -0500
commit874be0e3e167626904d227a4ae55e9b38612b3ee (patch)
tree8f9bb6d4c09764d10cdf776d2c4ec1ad877ab09c
parentMerge pull request #4936 from lioncash/page (diff)
downloadyuzu-874be0e3e167626904d227a4ae55e9b38612b3ee.tar.gz
yuzu-874be0e3e167626904d227a4ae55e9b38612b3ee.tar.xz
yuzu-874be0e3e167626904d227a4ae55e9b38612b3ee.zip
svc: Remove unnecessary [[maybe_unused]] tag
The parameter is used in this function, so this suppression isn't necessary.
-rw-r--r--src/core/hle/kernel/svc.cpp2
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) {
681} 681}
682 682
683/// Used to output a message on a debug hardware unit - does nothing on a retail unit 683/// Used to output a message on a debug hardware unit - does nothing on a retail unit
684static void OutputDebugString([[maybe_unused]] Core::System& system, VAddr address, u64 len) { 684static void OutputDebugString(Core::System& system, VAddr address, u64 len) {
685 if (len == 0) { 685 if (len == 0) {
686 return; 686 return;
687 } 687 }