summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Logging
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2026-05-03 20:20:07 -0500
committerGitHub <noreply@github.com>2026-05-03 20:20:07 -0500
commite22551eae1c84a7e4d0b6a5c519ef4ed4ef69df1 (patch)
treeeea011548860993fa5c1e92cdd82e70a2f986022 /Source/Core/Common/Logging
parenteb44b64c9ecbca2f6e346a1d2bdcdf00609f9f31 (diff)
parent34646cb9a90eb0ef7fa489f76753184359e7aa15 (diff)
Merge pull request #14641 from Dentomologist/replace_maybe_unused_annotations_with_commented_names
Replace some [[maybe_unused]] annotations with commented names
Diffstat (limited to 'Source/Core/Common/Logging')
-rw-r--r--Source/Core/Common/Logging/ConsoleListenerWin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Logging/ConsoleListenerWin.cpp b/Source/Core/Common/Logging/ConsoleListenerWin.cpp
index 7b4f08fee7..b14c9c9256 100644
--- a/Source/Core/Common/Logging/ConsoleListenerWin.cpp
+++ b/Source/Core/Common/Logging/ConsoleListenerWin.cpp
@@ -15,7 +15,7 @@ ConsoleListener::~ConsoleListener()
{
}
-void ConsoleListener::Log([[maybe_unused]] Common::Log::LogLevel level, const char* text)
+void ConsoleListener::Log(Common::Log::LogLevel, const char* text)
{
::OutputDebugStringW(UTF8ToWString(text).c_str());
}