Skip to content

Commit

Permalink
Try to fix clang warning
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkrupinski committed Sep 2, 2024
1 parent f78d8cb commit d6a2b5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class PlayerOutlineGlow {

void glowPlayerWeapons(auto&& playerPawn, cs2::Color glowColor) const noexcept
{
playerPawn.weapons().forEach([this, glowColor](auto&& weapon) { applyGlow(weapon, glowColor); });
playerPawn.weapons().forEach([this, glowColor](auto&& weapon) { this->applyGlow(weapon, glowColor); });
}

void applyGlow(auto&& baseEntity, cs2::Color color) const noexcept
Expand Down

0 comments on commit d6a2b5d

Please sign in to comment.