use bare array instead of parray in tournament index

This commit is contained in:
Martin Michelsen
2022-12-08 01:06:00 -08:00
parent 9a1ba56982
commit 9bb168b693
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -156,7 +156,7 @@ public:
std::shared_ptr<Tournament> get_tournament(const std::string& name) const;
private:
parray<std::shared_ptr<Tournament>, 0x20> tournaments;
std::shared_ptr<Tournament> tournaments[0x20];
};