From 2c5fdfcc3e3eb17a23f30b51b07d15a99e822457 Mon Sep 17 00:00:00 2001 From: Sara Date: Sun, 25 Aug 2024 13:01:09 +0200 Subject: [PATCH] chore: formatting update, removed _ argument name --- src/enemy_world_state.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/enemy_world_state.cpp b/src/enemy_world_state.cpp index 4b35de6..d7c585a 100644 --- a/src/enemy_world_state.cpp +++ b/src/enemy_world_state.cpp @@ -96,7 +96,7 @@ void EnemyWorldState::remove_aware_unit(Unit *unit) { this->select_and_set_target(); } -void EnemyWorldState::on_aware_unit_death(Unit *_, Unit *dead_entity) { +void EnemyWorldState::on_aware_unit_death(Unit *, Unit *dead_entity) { this->on_awareness_exited(dead_entity); }