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/VertexLoader_Position.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/VertexLoader_Position.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoader_Position.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VertexLoader_Position.cpp b/Source/Core/VideoCommon/VertexLoader_Position.cpp index 27ea61ea30..68f2d870f9 100644 --- a/Source/Core/VideoCommon/VertexLoader_Position.cpp +++ b/Source/Core/VideoCommon/VertexLoader_Position.cpp @@ -24,7 +24,7 @@ constexpr float PosScale(T val, float scale) } template <> -constexpr float PosScale(float val, [[maybe_unused]] float scale) +constexpr float PosScale(float val, float /* scale */) { return val; } |
