diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2026-05-03 20:20:07 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-03 20:20:07 -0500 |
| commit | e22551eae1c84a7e4d0b6a5c519ef4ed4ef69df1 (patch) | |
| tree | eea011548860993fa5c1e92cdd82e70a2f986022 /Source/Core/Common/Logging | |
| parent | eb44b64c9ecbca2f6e346a1d2bdcdf00609f9f31 (diff) | |
| parent | 34646cb9a90eb0ef7fa489f76753184359e7aa15 (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.cpp | 2 |
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()); } |
