Browse Source
Merge pull request #4972 from lioncash/unused4
svc: Remove unnecessary [[maybe_unused]] tag
pull/15/merge
Rodrigo Locatti
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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; |
|
|
|
} |
|
|
|
|