fixing multiple 'unused variable' warnings (#1224)

This commit is contained in:
Cryo81
2025-05-01 16:00:54 -03:00
committed by GitHub
parent 6fc02a4429
commit 707210f6a5
13 changed files with 77 additions and 77 deletions

View File

@@ -25,14 +25,14 @@ private:
/*A*/ NextAction::array(0, new NextAction("shoot"), nullptr),
/*C*/ nullptr);
}
static ActionNode* unstable_affliction(PlayerbotAI* ai)
static ActionNode* unstable_affliction([[maybe_unused]] PlayerbotAI* botAI)
{
return new ActionNode("unstable affliction",
/*P*/ NULL,
/*A*/ NextAction::array(0, new NextAction("immolate"), NULL),
/*C*/ NULL);
}
static ActionNode* unstable_affliction_on_attacker(PlayerbotAI* ai)
static ActionNode* unstable_affliction_on_attacker([[maybe_unused]] PlayerbotAI* botAI)
{
return new ActionNode("unstable affliction on attacker",
/*P*/ NULL,