summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorRodrigo Locatti <reinuseslisp@airmail.cc>2020-11-24 08:25:59 +0100
committerGitHub <noreply@github.com>2020-11-24 08:25:59 +0100
commit7afb7a9494a333d6baf51c24724dec3072238299 (patch)
tree9d788c2cc230973f173537a77366dfcc37e15deb /src/core/hle/kernel
parentinput_common: Fix typo in gc_poller.cpp with [[maybe_unused]]. (diff)
parentsvc: Remove unnecessary [[maybe_unused]] tag (diff)
downloadyuzu-7afb7a9494a333d6baf51c24724dec3072238299.tar
yuzu-7afb7a9494a333d6baf51c24724dec3072238299.tar.gz
yuzu-7afb7a9494a333d6baf51c24724dec3072238299.tar.bz2
yuzu-7afb7a9494a333d6baf51c24724dec3072238299.tar.lz
yuzu-7afb7a9494a333d6baf51c24724dec3072238299.tar.xz
yuzu-7afb7a9494a333d6baf51c24724dec3072238299.tar.zst
yuzu-7afb7a9494a333d6baf51c24724dec3072238299.zip
Diffstat (limited to 'src/core/hle/kernel')
-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) {
}
/// 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;
}