Switch TaskGoalList_Struct::GoalItemEntries to std::vector

This commit is contained in:
Michael Cook (mackal)
2018-06-11 21:58:11 -04:00
parent 4fec8a2b75
commit e3dfb2f19d
2 changed files with 6 additions and 16 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ struct TaskGoalList_Struct {
int ListID;
int Size;
int Min, Max;
int *GoalItemEntries;
std::vector<int> GoalItemEntries;
};
// This is used for handling lists, loading them from the database, searching them.