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

@@ -20,7 +20,7 @@ class DpsRogueStrategyActionNodeFactory : public NamedObjectFactory<ActionNode>
}
private:
static ActionNode* riposte(PlayerbotAI* botAI)
static ActionNode* riposte([[maybe_unused]] PlayerbotAI* botAI) // unused param - whipowill
{
return new ActionNode ("riposte",
/*P*/ nullptr,
@@ -28,7 +28,7 @@ class DpsRogueStrategyActionNodeFactory : public NamedObjectFactory<ActionNode>
/*C*/ nullptr);
}
static ActionNode* mutilate(PlayerbotAI* botAI)
static ActionNode* mutilate([[maybe_unused]] PlayerbotAI* botAI) // unused param - whipowill
{
return new ActionNode ("mutilate",
/*P*/ nullptr,
@@ -36,7 +36,7 @@ class DpsRogueStrategyActionNodeFactory : public NamedObjectFactory<ActionNode>
/*C*/ nullptr);
}
static ActionNode* sinister_strike(PlayerbotAI* botAI)
static ActionNode* sinister_strike([[maybe_unused]] PlayerbotAI* botAI) // unused param - whipowill
{
return new ActionNode ("sinister strike",
/*P*/ nullptr,
@@ -44,7 +44,7 @@ class DpsRogueStrategyActionNodeFactory : public NamedObjectFactory<ActionNode>
/*C*/ nullptr);
}
static ActionNode* kick(PlayerbotAI* botAI)
static ActionNode* kick([[maybe_unused]] PlayerbotAI* botAI) // unused param - whipowill
{
return new ActionNode ("kick",
/*P*/ nullptr,
@@ -52,7 +52,7 @@ class DpsRogueStrategyActionNodeFactory : public NamedObjectFactory<ActionNode>
/*C*/ nullptr);
}
static ActionNode* kidney_shot(PlayerbotAI* botAI)
static ActionNode* kidney_shot([[maybe_unused]] PlayerbotAI* botAI) // unused param - whipowill
{
return new ActionNode ("kidney shot",
/*P*/ nullptr,
@@ -60,7 +60,7 @@ class DpsRogueStrategyActionNodeFactory : public NamedObjectFactory<ActionNode>
/*C*/ nullptr);
}
static ActionNode* rupture(PlayerbotAI* botAI)
static ActionNode* rupture([[maybe_unused]] PlayerbotAI* botAI) // unused param - whipowill
{
return new ActionNode ("rupture",
/*P*/ nullptr,
@@ -68,7 +68,7 @@ class DpsRogueStrategyActionNodeFactory : public NamedObjectFactory<ActionNode>
/*C*/ nullptr);
}
static ActionNode* backstab(PlayerbotAI* botAI)
static ActionNode* backstab([[maybe_unused]] PlayerbotAI* botAI) // unused param - whipowill
{
return new ActionNode ("backstab",
/*P*/ nullptr,