diff options
| author | Dentomologist <dentomologist@gmail.com> | 2026-05-03 17:09:59 -0700 |
|---|---|---|
| committer | Dentomologist <dentomologist@gmail.com> | 2026-05-03 17:09:59 -0700 |
| commit | 34646cb9a90eb0ef7fa489f76753184359e7aa15 (patch) | |
| tree | eea011548860993fa5c1e92cdd82e70a2f986022 /Source/Core/VideoCommon/TMEM.cpp | |
| parent | eb44b64c9ecbca2f6e346a1d2bdcdf00609f9f31 (diff) | |
Replace some [[maybe_unused]] annotations with commented names
Remove the [[maybe_unused]] annotation from various parameters that are
unconditionally unused and comment out their names instead. This makes
it unambiguous that the variables are unused, while making the remaining
[[maybe_unused]] annotations more reliable indicators that those
variables are in fact used in some contexts.
These parameters are mostly in overridden functions where the override
doesn't need that particular variable.
Diffstat (limited to 'Source/Core/VideoCommon/TMEM.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/TMEM.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/TMEM.cpp b/Source/Core/VideoCommon/TMEM.cpp index 8b5404ab08..7c27131c30 100644 --- a/Source/Core/VideoCommon/TMEM.cpp +++ b/Source/Core/VideoCommon/TMEM.cpp @@ -143,7 +143,7 @@ void InvalidateAll() // On invalidate cache: // 1. invalidate all texture units. -void Invalidate([[maybe_unused]] u32 param) +void Invalidate(u32 /* param */) { // The exact arguments of Invalidate commands is currently unknown. // It appears to contain the TMEM address and a size. |
