Compile bug fixes.

This commit is contained in:
whipowill
2022-05-18 17:03:01 -05:00
parent 7b55e7aec4
commit 9a6709f5c1
29 changed files with 148 additions and 148 deletions

View File

@@ -17,7 +17,7 @@ class DpsPaladinStrategyActionNodeFactory : public NamedObjectFactory<ActionNode
}
private:
static ActionNode* seal_of_vengeance(PlayerbotAI* botAI)
static ActionNode* seal_of_vengeance([[maybe_unused]] PlayerbotAI* botAI) // unused param - whipowill
{
return new ActionNode ("seal of vengeance",
/*P*/ nullptr,
@@ -25,7 +25,7 @@ class DpsPaladinStrategyActionNodeFactory : public NamedObjectFactory<ActionNode
/*C*/ nullptr);
}
static ActionNode* seal_of_command(PlayerbotAI* botAI)
static ActionNode* seal_of_command([[maybe_unused]] PlayerbotAI* botAI) // unused param - whipowill
{
return new ActionNode ("seal of command",
/*P*/ nullptr,
@@ -33,7 +33,7 @@ class DpsPaladinStrategyActionNodeFactory : public NamedObjectFactory<ActionNode
/*C*/ nullptr);
}
static ActionNode* blessing_of_might(PlayerbotAI* botAI)
static ActionNode* blessing_of_might([[maybe_unused]] PlayerbotAI* botAI) // unused param - whipowill
{
return new ActionNode ("blessing of might",
/*P*/ nullptr,
@@ -41,7 +41,7 @@ class DpsPaladinStrategyActionNodeFactory : public NamedObjectFactory<ActionNode
/*C*/ nullptr);
}
static ActionNode* crusader_strike(PlayerbotAI* botAI)
static ActionNode* crusader_strike([[maybe_unused]] PlayerbotAI* botAI) // unused param - whipowill
{
return new ActionNode ("crusader strike",
/*P*/ nullptr,